How can I change the scale of y axis from figure 1 to figure 2
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
KL
2017-11-18
Use handles.
f1 = figure(1);
h1 = plot(rand(3));
ax1 = gca;
f2 = figure(2);
h2 = plot(rand(5));
ax2 = gca;
now use ax1 properties on ax2
ax2.YLim = ax1.YLim;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!