vlines.m

来自「JLAB is a set of Matlab functions I have」· M 代码 · 共 40 行

M
40
字号
function[h]=vlines(x,sty)%VLINES   Add vertical lines to a plot.%%   VLINES(X,STYLE) puts vertical lines at locations X having style%   described by the string STYLE.  VLINES draws the lines to fit the%   current axis.%%   The SYTLE strings follow the format specified in LINESTYLE.  Thus%   STYLE='2b--' draws blue dotted lines of width 2.%%   VLINES(X) uses the default STYLE='g--', a green dashed line.%%   See also HLINES.	%   __________________________________________________________________%   This is part of JLAB --- type 'help jlab' for more information%   (C) 2000--2006 J.M. Lilly --- type 'help jlab_license' for details    if strcmp(x,'--t')    returnendif nargin==1	sty='g--';endhold onx=x(:)';  ax=axis;y1=ax(3)*ones(size(x));y2=ax(4)*ones(size(x));x=[x;x];y=[y1;y2];h=plot(x,y);linestyle(h,sty);axis(ax)if nargout==0   clear hend

⌨️ 快捷键说明

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