From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 992/CH9/EX9.3/Ex9_3.sce | 14 ++++++++++++++ 992/CH9/EX9.3/ex9_3.txt | 14 ++++++++++++++ 992/CH9/EX9.3/ex9_3ans.txt | 4 ++++ 3 files changed, 32 insertions(+) create mode 100755 992/CH9/EX9.3/Ex9_3.sce create mode 100755 992/CH9/EX9.3/ex9_3.txt create mode 100755 992/CH9/EX9.3/ex9_3ans.txt (limited to '992/CH9/EX9.3') 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. -- cgit