how to solve unknown coefficents in matrixs
Afficher commentaires plus anciens
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.
1 commentaire
Walter Roberson
le 8 Nov 2012
Please improve the tags you have used for this question; see http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
Réponses (2)
Walter Roberson
le 8 Nov 2012
0 votes
1 commentaire
Walter Roberson
le 9 Nov 2012
Just make X all 0.
Matt Fig
le 9 Nov 2012
Use the NULL command.
A =[1 2 3;3 4 5];
X = null(A);
A*X %Check
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!