blob: e2f8746deac50b6b513c397bd34173a8ec1d6733 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Example 3.1
//Page 101
sqr=30//SQR=30dB
q=1*10^[-(sqr-7.78)/20]
disp('Thus 13 quantization intervals arer needed for each polarity for a total of 26 intervals in all. The number of bitz required are determined as')
N=log2(26)
//Result
//q = 0.078 V
//N = 4.7 = 5 bits per sample
|