📄 comb.m
字号:
function comb(x, y, linetype)%COMB Plot discrete-time sequence data.%----% COMB(Y) plots the data sequence Y as stems from the x-axis% terminated with circles for the data value.% COMB(X,Y) plots the data sequence Y at the values% specfied in X.% COMB(X,Y,'-.') or COMB(Y,':').% The optional final string argument specifies% a line-type for the stems of the data sequence.%*** This is a Mathworks M-file. It has been ******%*** RENAMED TO stem( ) in MATLAB Ver 4.0 ******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 = '-'; endelseif nargin == 3 x = x(:)'; y = y(:)';endxx = [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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -