Create sine wave with noise within 10-20 Hz
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I would like to create a sine wave with noise within a narrow spectrum (10-20 Hz). Is it possible to create a sine wave with random frequencies between 10-20 Hz?
Thanks a lot in advance,
Eric
0 个评论
回答(1 个)
Walter Roberson
2018-2-3
Construct a vector of coefficients in complex conjugate pairs, in an arrangement similar to
[0, zeros(1,N), A B C D, zeros(1,M), zeros(1,M), D' C' B' A' zeros(1,N)]
here the A B C D are the coefficients that will be used for the random noise in 10-20 Hz range. Use an appropriate number of coefficients according to your desired frequency resolution. Notice that the exact same coefficients must appear at the end but in reverse order and in their complex conjugate (random complex values for these are fine as long as the end of the vector has them in reverse order and complex conjugate of the originals.)
Now when you ifft() that vector, it will be the noise signal to add to your sine wave.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!