blob: 6151455138f03ae55d25cb3758efdb4e3b15eee1 (
plain)
1
2
3
4
5
6
7
8
|
//Caption:Determine the upper 3db frequency of the amplifier
//Ex1.4
clc;
clear;
close;
tr=1//Rise time(in micro sec)
fu=0.35*10^6/tr
disp(fu,'The upper 3db frequency of the amplifier(in hertz)=')
|