PM and FM signal

조회 수: 12 (최근 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 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