我正在尝试接收输入信号并以八度对其进行 FM 调制。
这给了我一个无法解释的“内存不足”错误。据我所知,我的输入文件并没有太大,所以我不知道为什么会出现这个错误。
请参阅下面的试用代码(带有行号):
1 pkg load communications
2
3 [sound1, fs] = audioread( 'sound1.wav' );
4
5 fc = fs / 2;
6 devreq = 100;
7 dt = 1 / fs;
8 len = length( sound1 ) * dt;
9
10 y = fmmod( sound1, fc, fs, devreq );
11
12 plot( abs( y ) )
我收到的错误:
error: out of memory or dimension too large for Octave's index type
error: called from
fmmod at line 32 column 5
Q2 at line 10 column 2