フィルターのクリア

I'm trying to rotate a plot before graphing it

3 ビュー (過去 30 日間)
Rick Giovanini
Rick Giovanini 2018 年 1 月 11 日
回答済み: Walter Roberson 2018 年 1 月 11 日
Hello, I'm trying to rotate plot information(I was doing this before with handles) without graphing it. This is because this has to do with animations, and other things being animated on this same plot. I need to get this shape to rotate before plotting it, because running it in time will not work well if it is plotted, even for a short time, and then rotated. I need to do this with handles because I don't want a new figure, nor do I want this shape to be overwritten while I'm graphing it.
  1 件のコメント
SRT HellKitty
SRT HellKitty 2018 年 1 月 11 日
Can you use camroll()? you can set the plot invisible while you do this;
set(gcf,'Visible','off') %set invisble
camroll(gca,20) %rotate 20*
set(gcf,'visible','on') %set visible

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 1 月 11 日
If you want to rotate part of the contents of the plot (rather than wanting to rotate the plotting frame itself) then I suggest parenting the graphic to a hgtransform and use hgmaketform to create the appropriate rotation matrix. See https://www.mathworks.com/help/matlab/ref/hgtransform.html

カテゴリ

Help Center および File ExchangeAnimation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by