Member of the linalgebra class.
linsolve(a, b)
c = linsolve(a, b)
Solves the linear equation ax = b in the unknown x. If no solution exists, LabVIEW returns an error. If an infinite number of solutions exist, LabVIEW does not return an error but generates only one solution.
| Name | Description |
| a | Specifies a real or complex matrix. |
| b | Specifies a real or complex vector. |
| Name | Description |
| c | Returns a real or complex vector. |
A = [1, 2, 3; 1, 3, 3; -1, -1, 2];
B = [1, 1, 1];
C = linsolve(A, B)