linlstsq

Syntax: linsolve(matrix1, matrix2).

Description: Solving systems of linear equations

Group: equations

Note:

Example:
A=[2 3 1; 4 4 5; 2 9 3];b=[0;3;1];a=linsolve(A,b)printf('%f\n',a)Answer:0.90909

Also see:

Implemented in: LambdaLINLSTSQ.java