how to solve unknown coefficents in matrixs
显示 更早的评论
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 个评论
Walter Roberson
2012-11-8
Please improve the tags you have used for this question; see http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
回答(2 个)
Walter Roberson
2012-11-8
0 个投票
Matt Fig
2012-11-9
Use the NULL command.
A =[1 2 3;3 4 5];
X = null(A);
A*X %Check
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!