blob: 34de08f2e19b0fdaca1e70e621183d6f10a0d8e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Exa 9.7
clc;
clear;
close;
//given data
C=.1;// in micro F
C=C*10^-6;// in F
R_A= 20;// in kohm
R_A=R_A*10^3;// in ohm
PulseWidth= 1.1*R_A*C;// in seconds
disp(PulseWidth*10^3,"The output pulse width in mili seconds");
|