blob: 4c3a9d35aeba9462d29e485ef7220822ee2c2878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 8 Page No: 1.86
//given
sr=2e6;//v/sec
vsat=15;//volt
//determine bandwidth
format(9);
fmax=sr/(2*3.14*vsat);
bw=fmax*sqrt(2);//bandwidth=fmax*sqrt(2)
disp('Bandwidth = '+string(bw)+' Hz');//error in the book
|