photo

Mohammad Yar


Last seen: 3年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

Feeds

表示方法

質問


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年以上 前 | 0 件の回答 | 0

0

回答

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0