IMF同图显示
这个。。。我确实是站内搜索过了,没有这个问题的答案。。。有A B C三个有一定相关性的信号,它们分别分出来了四个IMF,请问如何将同号的IMF放在一张图里显示呢?也就是说第一幅图是A B C的IMF1,然后第二幅是A B C的IMF2这样的显示方法。
问题很菜,希望高手能好心解答! 好好看看MATLAB的书 help plot
help hold ... 用hold on 命令 用plot 命令,plot 用法见help figure;
x=1:length(s)%s是信号的长度
subplot(311);
plot(x,imf(1,:));%A信号的IMF1
title('A');
subplot(312);
plot(x,imf(1,:));%B信号的IMF1
title('B');
subplot(313);
plot(x,imf(1,:));%C信号的IMF1
title('C'); 谢谢各位好心的解答,这个。。。我问题描述错了。。。
是想显示成这样的。。。啊,混乱的我啊。。。 figure; x=1:length(s)
subplot(211); plot(x,imf1(1,:)); hold on; title('A');
subplot(212); plot(x,imf2(2,:)); hold on; title('B'); ...
subplot(211); plot(x,imf1(1,:)); hold on; title('A');
subplot(212); plot(x,imf2(2,:)); hold on; title('B'); ...
... 太感动了。。。
谢谢ChaChing!!!
页:
[1]