blob: a851b15c88359a2adfc973f1c5c604ec1ef5dbf9 (
plain)
1
2
3
4
5
6
7
8
|
//chapter 6 example 9//
clc
clear
//electron transit time=tf,bandwidth=Bm,photoconductive gain=G,//
tf=8*(10^-12);//in seconds//
G=60;
Bm=(1/(2*%pi*tf*G))*(10^-8);
printf("\n maximum 3dB bandwidth=%f MHz\n",Bm)
|