finding the transformation vector?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuestas (1)
Vilém Frynta
el 1 de Abr. de 2023
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
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!