Can anyone please help me out to obtain frequency Modulated wave from a Phase Modulator using pmmod function in matlab?
1 view (last 30 days)
Show older comments
Can anyone please help me out to obtain frequency Modulated wave from a Phase Modulator using pmmod function in matlab?
0 Comments
Answers (1)
Walter Roberson
on 13 Jan 2022
fs = 50;
t = (0:2*fs+1)'/fs;
x = sin(2*pi*t) + sin(4*pi*t);
fc = 10;
phasedev = pi/2;
tx = pmmod(x,fc,fs,phasedev);
subplot(2,1,1)
plot(t,x); title('original')
subplot(2,1,2)
plot(t, tx); title('modulated')
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!