Frequency modulating a wav file?

조회 수: 24 (최근 30일)
George Smith
George Smith 2011년 1월 31일
댓글: isra 2016년 12월 8일
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!

답변 (3개)

Siddharth Shankar
Siddharth Shankar 2011년 1월 31일
If simulink is an option, the FM Modulator Passband will do the trick.
If you have the communications toolbox, you can use the FMMOD function.
You could also consider this file exchange submission.
This is assuming that you've already imported the WAV file into MATLAB. If not, use wavread to do this.
  댓글 수: 1
isra
isra 2016년 12월 8일
what if the audio file's content was no periodic, is it possible to FM modulate it?

댓글을 달려면 로그인하십시오.


Vieniava
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
isra 2016년 12월 8일
what if the audio file's content was no periodic, is it possible to FM modulate it?

댓글을 달려면 로그인하십시오.


jessica david
jessica david 2011년 3월 8일
hi, do you know how to perform fsk on a .wav file

카테고리

Help CenterFile Exchange에서 PHY Components에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by