blob: 8d08f1ffaa607d2427d24b2b03ea7b4e40651726 (
plain)
1
2
3
4
5
6
7
8
|
//Example 15.2
clc;
wc=20000; //Cutoff frequency in rad/s
C=0.01*10^-6; //Assumed value of capacitor
R=invr(wc*C);
x=ceil(R);
printf('\nResistence Value required is %.2f k ohm\n',x/1000)
|