Frequency modulating a wav file?
10 ビュー (過去 30 日間)
古いコメントを表示
Hi, i'm trying to frequency modulate an arbitary input wav file with a periodic wave. I was wondering how to do this because basic maths for frequency modulation depends on simple sine waves and i'm trying to modulate a non periodic complex waveform?
Any help would be greatly appreciated!
0 件のコメント
回答 (3 件)
Siddharth Shankar
2011 年 1 月 31 日
This is assuming that you've already imported the WAV file into MATLAB. If not, use wavread to do this.
1 件のコメント
isra
2016 年 12 月 8 日
what if the audio file's content was no periodic, is it possible to FM modulate it?
Vieniava
2011 年 1 月 31 日
when .wav is one-channel (not stereo):
[x fs]=wavread('NonPeriodic.wav');
Fc=1e6; % carrier = 1MHz
FS=2.2*Fc; % sampling frequency for output signal
deviation=75e3; % freq. deviation
smod=fmmod(x, Fc, FS, deviation);
1 件のコメント
isra
2016 年 12 月 8 日
what if the audio file's content was no periodic, is it possible to FM modulate it?
参考
カテゴリ
Help Center および File Exchange で Waveform Generation についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!