王晓 发表于 2010-7-6 09:51

emd与 hold on/off

emd与 hold on/off
这是emd程序里面的一部分,把程序放到embedded MATLAB模块里面,关于hold on/off会出现这样的错误,如何解答,谢谢

if tst
      subplot(4,1,1)
      plot(t,mp);hold on;
      plot(t,envmax,'--k');plot(t,envmin,'--k');plot(t,envmoy,'r');

      title(['IMF ',int2str(k),';   iteration ',int2str(nbit),' before sifting']);
      set(gca,'XTick',[])
   % holdoff

      subplot(4,1,2)
      plot(t,sx)
      %hold on
      plot(t,sdt,'--r')
      plot(t,sd2t,':k')
      title('stop parameter')
      set(gca,'XTick',[])
      %hold off

      subplot(4,1,3)
      plot(t,m)
      title(['IMF ',int2str(k),';   iteration ',int2str(nbit),' after sifting']);
      set(gca,'XTick',[])

      subplot(4,1,4);
      plot(t,r-m)
      title('residue');
      disp(['stop parameter mean value : ',num2str(s)])
      if tst == 2
      pause(0.01)
      else
      pause
      end

z755924843 发表于 2010-9-27 12:48

路过 看看{:{41}:}
页: [1]
查看完整版本: emd与 hold on/off