From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1409/CH2/EX2.1/2_1.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 1409/CH2/EX2.1/2_1.sce (limited to '1409/CH2/EX2.1/2_1.sce') diff --git a/1409/CH2/EX2.1/2_1.sce b/1409/CH2/EX2.1/2_1.sce new file mode 100644 index 000000000..cedc95b5a --- /dev/null +++ b/1409/CH2/EX2.1/2_1.sce @@ -0,0 +1,14 @@ +clc; +//page 2-5 +//Example 2.1 +//The value of inductor is 40*10^(-6) Henry and the value of capacitor is 12*10^(-9) Farad. Given frequency is 5*10^3 Hz +L=40*10^(-6); +C=12*10^(-9); +fm=5000; +fc=1/(2*%pi*sqrt(L*C)); +disp(+'kHz',fc/10^3,'fc='); +disp(+'kHz',(fc+fm)/10^3,'Upper Sideband frequency is '); +disp(+'kHz',(fc-fm)/10^3,'Loweer Sideband frequency is '); +fusb=234.72037; +flsb=224.72037; +disp(+'kHz',fusb-flsb,'Bandwidth is '); -- cgit