PM and FM signal

18 ビュー (過去 30 日間)
Kanard
Kanard 2018 年 5 月 12 日
回答済み: Mohammed Elsayed 2022 年 5 月 18 日
Hello, I want to know if there is any problem with my code of phase modulated signal and how can I perform frequency modulated signal direct from this PM signal? Theoretically, I can use an integral for this PM signal and I can have immediately FM signal, but I don't know how to express that in Matlab. Thanks for your help.
fa = 3e5; %sampling frequency
delp = pi; %phasehub
fo1 = 15000; %carrier frequency
tq = -1e-2:0.0001:1e-2;
vq = cos(2*pi*1500*tq); %Source Signal
vp = cos(2*pi*fo1*tq + delp*vq); %pm signal
plot(tq,vp);
title('Phasen signal');
xlabel('time');
ylabel('Amplitude');
  2 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 5 月 12 日
編集済み: KALYAN ACHARJYA 2018 年 5 月 13 日
For phase modulation (any modulation) you need two signals, a carrier signal, and input modulation signal, the output will modulated wave.
tq Time starts in minus...?
Clarify?
Kanard
Kanard 2018 年 5 月 13 日
hi, it's just a range given by my exercise from -1ms<t<1ms. And is this correct formula for Pm signal? which vq is input signal and fo1 is the carrier frequency.
vp = cos(2*pi*fo1*tq + delp*vq); %pm signal

サインインしてコメントする。

回答 (1 件)

Mohammed Elsayed
Mohammed Elsayed 2022 年 5 月 18 日
fa = 3e5; %sampling frequency
delp = pi; %phasehub
fo1 = 15000; %carrier frequency
tq = -1e-2:0.0001:1e-2;
vq = cos(2*pi*1500*tq); %Source Signal
vp = cos(2*pi*fo1*tq + delp*vq); %pm signal
plot(tq,vp);
title('Phasen signal');
xlabel('time');
ylabel('Amplitude');

カテゴリ

Help Center および File ExchangePHY Components についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by