⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vlines.m

📁 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -