plotting new axis given a DCM
古いコメントを表示
Good Morning,
If I am given a coordinate system centered at [0,0,0] and have obtained the cosines of the angles (DCM) how can I apply this to obtain the rotated coordinate system on a plot?
Thanks,
Mel
10 件のコメント
Iain
2013 年 8 月 30 日
Why not plot whatever it is that you want to plot on two separate axes?
Melissa
2013 年 8 月 30 日
Iain
2013 年 8 月 30 日
Plot a unit vector on it?
Melissa
2013 年 8 月 30 日
Iain
2013 年 8 月 30 日
OldCords = [0 1;0 0;0 0] %origin, and x = 1 (unit vector)
NewCords = DCM * OldCords;
plot3(NewCords(1,:),NewCords(2,:),NewCords(3,:))
Walter Roberson
2013 年 8 月 30 日
hgtransform() ?
Melissa
2013 年 8 月 30 日
Melissa
2013 年 8 月 30 日
Melissa
2013 年 8 月 30 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Assembly についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!