Home > @josh-brown/vector > solve
Solves the matrix equation _Ax=b_ for the vector _x_ using the default implementation. See solveByGaussianElimination()
Signature:
export declare function solve<S>(A: Matrix<S>, b: Vector<S>): LinearSolution<S>;|
Parameter |
Type |
Description |
|---|---|---|
|
A |
Matrix<S> | |
|
b |
Vector<S> |
Returns: