stem.m

来自「(源代码)基于计算机的信号处理实践 栾晓明译」· M 代码 · 共 37 行

M
37
字号
function stem(x, y, linetype)
%STEM   Plot discrete-time sequence data.
%----
%   stem(Y) plots the data sequence Y as stems from the x-axis
%           terminated with circles for the data value.
%   stem(X,Y) plots the data sequence Y at the values
%              specfied in X.
%   stem(X,Y,'-.') or stem(Y,':').
%             The optional final string argument specifies
%              a line-type for the stems of the data sequence.

%*** This is a modified Mathworks M-file. ******

n = length(x);
if nargin == 1
    y = x(:)';
    x = 1:n;
    linetype = '-';
elseif nargin == 2
    if isstr(y)
        linetype = y;
        y = x(:)';
        x = 1:n;
    else
        x = x(:)';
        y = y(:)';
        linetype = '-';
    end
elseif nargin == 3
    x = x(:)';
    y = y(:)';
end
xx = [x;x];
yy = [zeros(1,n);y];
plot(x,y,'ro',xx,yy,['r' linetype])
q = axis;hold on;plot([q(1) q(2)],[0 0],'w-');axis;hold off;

⌨️ 快捷键说明

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