New Microsoft Word Document
New Microsoft Word Document
GROUP MEMBERS:
AVN CDT ALI HASSAN (17089006)
AVN CDT JAMAL (17089024)
RSAF/C NAWAF (8471)
SUBMITTED TO:
SQN LDR ASIM
MATLAB CODE:
%>>>>>>>>> MATLAB code for binary FSK modulation and de-modulation >>>>>>>%
clc;
clear all;
close all;
end
t1=bp/100:bp/100:100*length(x)*(bp/100);
subplot(3,1,1);
plot(t1,bit,'lineWidth',2.5);grid on;
axis([ 0 bp*length(x) -.5 1.5]);
ylabel('amplitude(volt)');
xlabel(' time(sec)');
title('transmitting information as digital signal');
end
t4=bp/100:bp/100:100*length(mn)*(bp/100);
subplot(3,1,3)
plot(t4,bit,'LineWidth',2.5);grid on;
axis([ 0 bp*length(mn) -.5 1.5]);
ylabel('amplitude(volt)');
xlabel(' time(sec)');
title('recived information as digital signal after binary FSK demodulation');
OUTPUT:
REFERENCES:
(https://www.youtube.com/watch?v=czam2Qn5K98)
(https://www.tutorialspoint.com/digital_communication/digital_com
munication_frequency_shift_keying.htm)