📄 ylima.m
字号:
% Set Y-limits for all plots in current figure.% Usage: ylima([ys ye])% Note: ylima('auto') resets to autoscaling on all graphs% Or: 'ylima' to set all curves to same as current axis% Written by Scott Meninger of MIT, based% xlima code by Scott Willingham of Silicon Laboratories, Inc.function ylima(yy)if nargin == 0 yy = ylim;endh=get(gcf,'Children');for i = 1:length(h) ylim(h(i), yy);end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -