Go to the first, previous, next, last section, table of contents.


matrix_solve_linear

matrix_solve_linear(M,X,B)
: It solves the system of linear equations M X = B

Example:

 matrix_solve_linear([[1,2],[0,1]],[x,y],[1,2]);


Go to the first, previous, next, last section, table of contents.