how to solve unknown coefficents in matrixs

3 views (last 30 days)
sam
sam on 8 Nov 2012
like A.X = B , where X =inv A B where A is a matrix of some polynomials . X is the matrix of unknowns . and B is a matrix of zeros.

Answers (2)

Walter Roberson
Walter Roberson on 8 Nov 2012

Matt Fig
Matt Fig on 9 Nov 2012
Use the NULL command.
A =[1 2 3;3 4 5];
X = null(A);
A*X %Check

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!