blob: e4983344d1de29a9a61990af380f43bc0e3f1a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//clear//
//Example5.7:"is 741's power bandwith atleast 3kHz""
//Page 148
//figure 5.6
clear;
clc;
slewrate=0.5/10^-6; // in V/S
Vp=12; //in Volts
fmax=slewrate/(2*%pi*Vp);
disp("Hz",fmax,"Fmax");
//Result
|