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

📄 plotnc.m

📁 一种新的时频分析方法的matlab源程序。
💻 M
字号:
function  nt= plotnc(t,c,start,stop,fig_num)
% plotnc(t,c,start,stop,fig_num,stitle,xunits)
%		t is time axis
%		c is component array
%		plot begins from the component 'start'
%		plot ends at component stop
%		plot appears in Figure fig_num
%
% --- Steven R. Long at NASA GSFC / WFF --- Version 03/25/99 -- %
% --- Based on an Older Approach by Z. Shen ------------------- %

figure(fig_num);
clf;
tn=length(t);
t1=min(t(1),t(tn));
t2=max(t(1),t(tn));
for j=start:stop;
   subplot(stop-start+1,1,j+1-start),plot(t,c(:,j));
   axis([t1 t2 min(c(:,j)) max(c(:,j))]);	
   s1='c';
   s2=[s1 num2str(j)];
   ylabel(s2);
   if(j < stop);
      set(gca,'xticklabel','');
   end;
end;


⌨️ 快捷键说明

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