⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plot8d.m

📁 一种新的时频分析方法的matlab源程序。
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -