summaryrefslogtreecommitdiff
path: root/830/CH6/EX6.4.1/SNR_DFT.sce
blob: e48aba67250f155cab8fe1fca8484a34688383be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Graphical//
//Example 6.4.1
//Program to Calculate No.of bits required for given
//Signal to Quantization Noise Ratio
//in computing DFT
clear;
clc;
close;
N = 1024;
SQNR = 30;  //SQNR = 30 dB
v = log2(N); //number of stages
b = (log2(10^(SQNR/10))+2*v)/2;
b = ceil(b)
disp(b,'The number of bits required rounded to:')