Solve unknow array/matrix

2 views (last 30 days)
Teemu Hämäläinen
Teemu Hämäläinen on 6 Nov 2021
Commented: John D'Errico on 6 Nov 2021
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?

Answers (1)

the cyclist
the cyclist on 6 Nov 2021
% Input
B = [3 0; 0 2];
C = [1 2 3; 4 5 6];
% Solve for A
A = B\C
A = 2×3
0.3333 0.6667 1.0000 2.0000 2.5000 3.0000
% Verify
B * A
ans = 2×3
1 2 3 4 5 6
  1 Comment
John D'Errico
John D'Errico on 6 Nov 2021
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.

Sign in to comment.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!