xylima.m

来自「generate eye diagram from spice sim resu」· M 代码 · 共 21 行

M
21
字号
% Set XY-limits for all plots in current figure.% Usage: xylima([xs xe],[ys ye])%  Note:  xylima('auto') resets to autoscaling on all graphs%    Or: 'xylima' to set all curves to same as current axis%  Written by Scott Meninger of MIT based on%  xlima code by Scott Willingham of Silicon Laboratories, Inc.function xylima(xx,yy)if nargin == 0    xx = xlim;    yy = ylim;endh=get(gcf,'Children');for i = 1:length(h)    xlim(h(i), xx);    ylim(h(i), yy);end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?