clc; clear all; clf;
t=[0:0.01:4.4*%pi];
A=5;
wc=5;
Vm=A.*squarewave(t);
Vc=A.*cos(wc.*t);
fc=wc/(2*%pi);
subplot(3,1,1);
plot(t,Vm, 'red');
xlabel("Time")
ylabel("Amplitude of Message Signal")
subplot(3,1,2);
plot(t,Vc, 'green');
xlabel("Time")
ylabel("Amplitude of Carrier Signal")
fd=0.5; //frequency deviation
subplot(3,1,3);
Vf=A.*cos(2.*%pi.*(fc+Vm.*fd).*t);
plot(t,Vf, 'blue');
xlabel("Time")
ylabel("Amplitude of FSK Signal")
Wednesday, 9 November 2022
Communication Systems - FSK
Subscribe to:
Post Comments (Atom)
Verilog Code for Universal Shift Register
Universal Shift Register module universalshift (clr,clk,sel,in,out); input clr,clk; input [1:0]sel; input [3:0]parin; output reg[3:0]out; ...

-
Gate Level Modelling module 4to2encoder(a,b); input [3:0]a; output [1:0]b; wire x0,x1,x2,x3; xor g1(x0,a[3],a[2]); not g2(x1,a[0]); not g3...
-
Gate Level Modelling module srflipflop(q,qbar,s,r,clk); input s,r,clk; output reg q,qbar; wire x,y; nand g1(x, s,clk); nand g2(y,r,clk); n...
-
Gate Level Modelling module 2to4decoder(a0,a1, d0,d1,d2,d3); input a0,a1; output d0,d1,d2,d3; wire s,t; not g1(s,a0); not g2(t,a1); and g3...
No comments:
Post a Comment