|
Solve
Solve a linear matrix equation, or system of linear algebraic equations.
vector matrix::Solve(
|
Parameters
b
[in] Ordinate or 'dependent variable' values. (Vector of free terms).
Return Value
Vector with solution to the system a * x = b.
Note
If at least one matrix row or column is zero, the system has no solution.
If two or more matrix rows or columns are linearly dependent, the system has no solution.
Example
//--- SLAE solution
|