blob: 657b59f00b582cbcb8f4c97236ae1a3246bdb350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Example 6.41
// Calculation of maximum bandwidth
// Page no 496
clc;
clear;
close;
//Given data
t=5*10^-12 // Electron transit time
G=70; // Gain of the device
// Maximum bandwidth
Bm=1/(2*%pi*t*G);
Bm=Bm*10^-6;
//Displaying results in the command window
printf("\n Bandwidth(in MHz) = %0.1f ",Bm);
// The answers vary due to round off error
|