diff options
Diffstat (limited to '1964/CH5/EX5.35/ex5_35.sce')
-rwxr-xr-x | 1964/CH5/EX5.35/ex5_35.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1964/CH5/EX5.35/ex5_35.sce b/1964/CH5/EX5.35/ex5_35.sce new file mode 100755 index 000000000..66f08c015 --- /dev/null +++ b/1964/CH5/EX5.35/ex5_35.sce @@ -0,0 +1,14 @@ +//Chapter-5, Example 5.35, Page 198
+//=============================================================================
+clc
+clear
+//INPUT DATA
+Q=250;//quality factor
+fr=1.5*10^6;//resonant freq in hertz
+//CALCULATIONS
+Bw=(fr)/(Q);//bandwidth in Hz
+hf1=fr+Bw;//half power freq 1
+hf2=fr-Bw;//half power freq 2
+mprintf("Thus bandwidth is %d hz\n",Bw);
+mprintf("Thus value of half-power frequencies are %g hz and %g hz",hf1,hf2);
+//=================================END OF PROGRAM======================================================================================================
|