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 --- 3630/CH17/EX17.10/Ex17_10.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 3630/CH17/EX17.10/Ex17_10.sce (limited to '3630/CH17/EX17.10/Ex17_10.sce') diff --git a/3630/CH17/EX17.10/Ex17_10.sce b/3630/CH17/EX17.10/Ex17_10.sce new file mode 100644 index 000000000..4ad8ffb87 --- /dev/null +++ b/3630/CH17/EX17.10/Ex17_10.sce @@ -0,0 +1,13 @@ +clc; +f0=100; +Q=1.02; +BW=floor(f0/Q); +fc1=ceil(f0-BW/2); +fc2=floor(f0+BW/2); +fc11=floor(f0*((1+(1/((2*Q)^2)))^0.5)-BW/2); +fc22=floor((f0*(1+(1/((2*Q)^2)))^0.5)+BW/2); +Fc1=((fc11-fc1)/fc11)*100; +Fc2=((fc22-fc2)/fc22)*100; +disp('%',Fc1,"Fc1=");//The answers vary due to round off error +disp('%',Fc2,"Fc2=");//The answers vary due to round off error + -- cgit