Solve unknow array/matrix
이전 댓글 표시
I have a know 2x2 array (3 0; 0 2)that get multiplied by array A and the answer is a known array C(1 2 3; 4 5 6), how can I solve all the elements in array A?
답변 (1개)
% Input
B = [3 0; 0 2];
C = [1 2 3; 4 5 6];
% Solve for A
A = B\C
% Verify
B * A
댓글 수: 1
John D'Errico
2021년 11월 6일
Yes, of course. With only the caveat that an exact solution need not always exist. If B does not have full rank, then SOME of the time, there will be no solution.
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!