how to solve unknown coefficents in matrixs

1 vue (au cours des 30 derniers jours)
sam
sam le 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.

Réponses (2)

Walter Roberson
Walter Roberson le 8 Nov 2012

Matt Fig
Matt Fig le 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!

Translated by