hlines.m

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

M
41
字号
function[h]=hlines(y,sty)%HLINES   Add horizontal lines to a plot.%%   HLINES(Y,STYLE) puts horizontal lines at locations Y having style%   described by the string STYLE.  HLINES 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.%%   HLINES(Y) uses the default STYLE='g--', a green dashed line.%%   See also VLINES.	%   _________________________________________________________________%   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(y,'--t')    returnendif nargin==1	sty='g--';endhold ony=y(:)';ax=axis;x1=ax(1)*ones(size(y));x2=ax(2)*ones(size(y));y=[y;y];x=[x1;x2];h=plot(x,y);linestyle(h,sty);axis(ax)if nargout==0   clear hend

⌨️ 快捷键说明

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