diff options
Diffstat (limited to '992/CH9/EX9.3')
-rwxr-xr-x | 992/CH9/EX9.3/Ex9_3.sce | 14 | ||||
-rwxr-xr-x | 992/CH9/EX9.3/ex9_3.txt | 14 | ||||
-rwxr-xr-x | 992/CH9/EX9.3/ex9_3ans.txt | 4 |
3 files changed, 32 insertions, 0 deletions
diff --git a/992/CH9/EX9.3/Ex9_3.sce b/992/CH9/EX9.3/Ex9_3.sce new file mode 100755 index 000000000..a3470eed8 --- /dev/null +++ b/992/CH9/EX9.3/Ex9_3.sce @@ -0,0 +1,14 @@ +
+//Exa:9.3
+clc;
+clear;
+close;
+//Given:
+Bw=4000;//in Hz
+nQl=128;//i.e. =2^7;//quantizing levels
+NyqR=2*Bw;
+n=7;
+Total_bpersmple=8;
+total_smples=NyqR*Total_bpersmple;
+printf("\n nyquist sampling rate = %fHz",NyqR);
+printf("\n Bit rate = %fKb/sec",total_smples);
\ No newline at end of file diff --git a/992/CH9/EX9.3/ex9_3.txt b/992/CH9/EX9.3/ex9_3.txt new file mode 100755 index 000000000..1562a2af5 --- /dev/null +++ b/992/CH9/EX9.3/ex9_3.txt @@ -0,0 +1,14 @@ +//Caption:Program to determine bitrate.
+//Exa:9.3
+clc;
+clear;
+close;
+//Given:
+Bw=4000;//in Hz
+nQl=128;//i.e. =2^7;//quantizing levels
+NyqR=2*Bw;
+n=7;
+Total_bpersmple=8;
+total_smples=NyqR*Total_bpersmple;
+printf("\n nyquist sampling rate = %fHz",NyqR);
+printf("\n Bit rate = %fKb/sec",total_smples);
\ No newline at end of file diff --git a/992/CH9/EX9.3/ex9_3ans.txt b/992/CH9/EX9.3/ex9_3ans.txt new file mode 100755 index 000000000..33cd8340d --- /dev/null +++ b/992/CH9/EX9.3/ex9_3ans.txt @@ -0,0 +1,4 @@ +
+ nyquist sampling rate = 8000.000000Hz
+ Bit rate = 64000.000000Kb/sec
+ Execution done.
|