diff options
Diffstat (limited to '3630/CH14/EX14.4/Ex14_4.sce')
-rw-r--r-- | 3630/CH14/EX14.4/Ex14_4.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3630/CH14/EX14.4/Ex14_4.sce b/3630/CH14/EX14.4/Ex14_4.sce new file mode 100644 index 000000000..6063f64e5 --- /dev/null +++ b/3630/CH14/EX14.4/Ex14_4.sce @@ -0,0 +1,8 @@ +clc;
+f0=60;
+fc2=300;
+fc1=(60)^2/(300);
+BW=fc2-fc1;
+disp('kHz',BW,"BW=")//The answers vary due to round off error
+disp('kHz',fc1,"fc1=")//The answers vary due to round off error
+
|