plot8d.m

来自「一种新的时频分析方法的matlab源程序。」· M 代码 · 共 15 行

M
15
字号
function  nt= plot8c(t,c,i)
% plot8c(t,c,i)  :: plot 8 subplots, begins from the component i.

close;

tn=length(t);
for j=i:i+7
   subplot(8,1,j+1-i),plot(t,c(:,j),'linew',.1);
   axis([t(1) t(tn) 0 150]);	
   s1='c';
   s2=[s1 num2str(j)];
   ylabel(s2);
end
nt=1;

⌨️ 快捷键说明

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