f_line.m

来自「digital signal processing常用工具箱」· M 代码 · 共 33 行

M
33
字号
function f_line (x,y,dx,dy,len,color)

%F_LINE: Draw a line segment on current figure
%
% Usage: f_line (x,y,dx,dy,len,color)
%
% Inputs: 
%         x     = x coordinate of start of line
%         y     = y coordinate of start of line
%         dx    = denominator of line slope 
%         dy    = numerator of line slope
%         len   = length of line measured along xaxis
%                 if dx ~= 0 or y axis otherwise
%         color = optional 1 by 3 color array for line color
%
% Note: Used by GUI modules

% Draw line

hold on
if dx ~= -0
   x1 = x + sign(dx)*len;
   y1 = y + (dy/dx)*len;
else
   y1 = y + sign(dy)*len;
   x1 = x;
end
if (nargin <= 5)
   plot([x x1],[y y1],'k')
else
   plot([x x1],[y y1]','Color',color)
end

⌨️ 快捷键说明

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