finding the transformation vector?
Show older comments
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 Comment
Torsten
on 1 Apr 2023
You mean A.*x = b or A*x = b ?
Answers (1)
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
Categories
Find more on z-transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!