登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
第一次发帖,这是我通过查阅论坛后自己写的EEMD出图程序,但是出的图中间有一根横线是怎么回事呀,球球大家的帮助。 year=data(:,1); inData=data(:,2); rslt=eemd(inData,0.2,100);
subplot(7,1,1); plot(year,rslt(:,2)); axis([1383 2017 -2 2]); ylabel('IMF1'); grid; subplot(7,1,2); plot(year,rslt(:,3)); axis([1383 2017 -1.5 1.5]); ylabel('IMF2'); grid; subplot(7,1,3); plot(year,rslt(:,4)); axis([1383 2017 -1 1]); ylabel('IMF3'); grid; subplot(7,1,4); plot(year,rslt(:,5)); axis([1383 2017 -1 1]); ylabel('IMF4'); grid; subplot(7,1,5); plot(year,rslt(:,6)); axis([1383 2017 -1 1]); ylabel('IMF5'); grid; subplot(7,1,6); plot(year,rslt(:,7)); axis([1383 2017 -1 1]); ylabel('IMF6'); grid; subplot(7,1,7); plot(year,rslt(:,13)); axis([1383 2017 50 71]); ylabel('RES'); grid;
|