summaryrefslogtreecommitdiff
path: root/992/CH9/EX9.3/ex9_3.txt
blob: 1562a2af53896708f70c261b45068309e137f5f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);