필터 지우기
필터 지우기

How to plot multiple x,y frames based on their corresponding transformation matrices in the same figure?

조회 수: 1 (최근 30일)
How to plot multiple x,y frames based on their corresponding transformation matrices in the same figure? The attached are the transormation matrices.
  댓글 수: 3
Image Analyst
Image Analyst 2022년 5월 16일
I'm pretty sure when @Matt J does this
>> 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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2022년 5월 16일
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, '-');

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by