finding the transformation vector?

Let say I have a vector A:
A=[1 2 2 3 3 3 4 4 4 4];
then I transform A to B by x so that [ Ax = B ]:
B=[4 1 4 4 1 1 2 4 6 5];
How do I find x ?
Thanks!

1 件のコメント

Torsten
Torsten 2023 年 4 月 1 日
You mean A.*x = b or A*x = b ?

サインインしてコメントする。

回答 (1 件)

Vilém Frynta
Vilém Frynta 2023 年 4 月 1 日

0 投票

A = [1 2 2 3 3 3 4 4 4 4];
B = [4 1 4 4 1 1 2 4 6 5];
x = B./A
x = 1×10
4.0000 0.5000 2.0000 1.3333 0.3333 0.3333 0.5000 1.0000 1.5000 1.2500

製品

リリース

R2023a

質問済み:

2023 年 4 月 1 日

コメント済み:

2023 年 4 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by