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