基本上,我有一个学校项目,在这个项目中,我必须从某一波卷宗中建立一个新的波段。 这一新的波浪必须在马特拉布产生,唯一的区别是,一只ine波将与特定的编织物混为一谈(并非最终的)。 十九波将达到500赫兹。
我的法典是:
clear;
filename = C:Documents and Settingscmh0007My Documents
ofl.wav ;
[y, Fs, nbits, readinfo] = wavread(filename);
duration = numel(y) / Fs;
sinefs = 0:0.002:duration;
sinwave = 0.5*sin(2*pi*sinefs);
disp(size(y));
disp(size(sinwave));
newsignal = y + sinwave;
subplot(2,2,1), plot(y), title( Entire waveform );
subplot(2,2,3), plot(sinwave), title( sine waveform );
subplot(2,2,2), plot(newsignal), title( added waveform );
然而,该法典未能创造新的签字变量。 问题是,由于两个波之间的取样率不同,这两个矩阵的规模不同。
规模要求的产出如下:
797696 2
1 18089
由于这些档案在数量上有所不同,图四显示,我只能使用与每批特定波卷宗的44次相比的同一样本。 然而,由于差异并不完全是44个,我不知道这甚至是一个选择。
Does anyone have any suggestions on how to go about mixing these two files?