How to change the axis limits of plotted graph in .fig format
13 ビュー (過去 30 日間)
古いコメントを表示
I have already plotted the graph and it has 2 axis. i want to change the limit of yaxis right and yaxs left in the graph itself sicne i dont have the .m file. please help
1 件のコメント
採用された回答
Voss
2022 年 4 月 20 日
% make some plot with two y-axes
yyaxis right
plot(2:20)
yyaxis left
plot(1:10);
% save the figure to file
saveas(gcf(),'my_fig.fig')
% % (delete the figure)
% delete(gcf())
% open the figure from file
openfig('my_fig.fig');
% modify the y-axes' limits
yyaxis left
ylim([-10 10]);
yyaxis right
ylim([-10 20]);
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

