how to solve unknown coefficents in matrixs

1 visualizzazione (ultimi 30 giorni)
sam
sam il 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.

Risposte (2)

Walter Roberson
Walter Roberson il 8 Nov 2012

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by