diff options
Diffstat (limited to '3630/CH17/EX17.3/Ex17_3.sce')
-rw-r--r-- | 3630/CH17/EX17.3/Ex17_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH17/EX17.3/Ex17_3.sce b/3630/CH17/EX17.3/Ex17_3.sce new file mode 100644 index 000000000..3e8af8af7 --- /dev/null +++ b/3630/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,10 @@ +fc1=960000;
+fc2=1440000;
+BW=480000;
+f0=ceil((fc1*fc2)^0.5);
+fave=(fc1+fc2)/2;
+Q=f0/BW;
+disp('kHz',f0/1000,"f0=");
+disp('kHz',fave/1000,"fave=");
+disp(' ',Q,"Q=");//The answers vary due to round off error in f0
+
|