Community Profile

photo

Mohammad Yar


Last seen: 3 years ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Question


I have matlab codes bust i did not able to explain i Viva please examples all 4 code to me any one. CODE for Transmitter And Receiver.
code 1 clc; close all; clear all; h=0.5; fs=1000; T=1/fs; t=0:T:1; %Message Signal: Am = 10; fm = 10; x = Am*sin(2*...

3 years ago | 0 answers | 0

0

answers

Answered
FM Signal in matlab
%Carrier Signal: Ac = Am/h; fc = 10*fm; y = Ac*cos(2*pi*fc*t); figure(3); plot(t(1:1000), y(1:1000)); title('Carrier Signal...

3 years ago | 0

Answered
FM Signal in matlab
%Modulated Signal: z = ammod(x, fc, fs, 0, Ac); figure(5); plot(t(1:1000), z(1:1000)); title('Modulated Signal'); xlabel('t...

3 years ago | 0

Answered
FM Signal in matlab
%Demodulated Signal: d = amdemod(z, fc, fs, 0, Ac); figure(7); plot(t(1:1000), d(1:1000)); title('Demodulated Signal'); xla...

3 years ago | 0

Answered
FM Signal in matlab
clc; close all; clear all; h=0.5; fs=1000; T=1/fs; t=0:T:1; %Message Signal: Am = 10; fm = 10; x = Am*sin(2*pi*fm*t); f...

3 years ago | 0