How to plot multiple x,y frames based on their corresponding transformation matrices in the same figure?
Mostrar comentarios más antiguos
How to plot multiple x,y frames based on their corresponding transformation matrices in the same figure? The attached are the transormation matrices.
3 comentarios
M
el 16 de Mayo de 2022
Image Analyst
el 16 de Mayo de 2022
>> s = load('TransformationMatrices.mat')
s =
struct with fields:
TransformationMatrices: [3×3×23 double]
he's going to ask you what the different dimensions in TransformationMatrices represent. So you might as well describe it now, so @Matt J will be prepared to answer you when/if he sees this, or just in case someone else might also want to try to help you.
Matt J
el 17 de Mayo de 2022
I don't understand the question at all, I'm afraid.
Respuestas (1)
Image Analyst
el 16 de Mayo de 2022
Not sure what an "x, y frame" is, or a "corresponding transformation matrices", but have you looked at plot?
plot(x1, y1, '-');
hold on;
plot(x2, y2, '-');
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!