How to make the axis adjust to new plots
1 回表示 (過去 30 日間)
古いコメントを表示
In the app designer i have included a plot for projectile motion, however i cant seem to make the axis values adjust when plotting a second graph on top of it- it remains at the limits of the first plot i.e. i cant see the second plot provided the x and y values are greater than the first plot
any help would be greatly appreciated! im pulling my hair out over this!
comet(app.Graph,x,y,0.1)
hold(app.Graph,'on')
4 件のコメント
Jan
2020 年 12 月 20 日
Please post code as text, noit as screenshot. This makes it much easier to use copy&paste to post an answer.
回答 (2 件)
Cris LaPierre
2020 年 12 月 24 日
I would add the following to the bottom of your plotting code.
hold(app.Graph,'off') % best practice to always pair hold on with a hold off
axis(app.Graph,'auto')
0 件のコメント
Rishabh Mishra
2020 年 12 月 24 日
Hi,
Based on my understanding of the issue, I can assume that you are using ‘app.graph’ as axes handle object to create plots over it.
In this case, since the x & y limits of the axes object is not appropriate, you are unable to view the 2nd plot.
To resolve the issue, readjust the x & y limits of the axes handle object ‘app.graph’. The code is given below:
app.graph.XLim = [-20 20]; % example range of values
app.graph.YLim = [-20 20]; % example range
The range of values above should be such that it includes both the plots.
Hope this helps.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!