diff options
Diffstat (limited to '1850/CH9/EX9.7/exa_9_7.sce')
-rwxr-xr-x | 1850/CH9/EX9.7/exa_9_7.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1850/CH9/EX9.7/exa_9_7.sce b/1850/CH9/EX9.7/exa_9_7.sce new file mode 100755 index 000000000..34de08f2e --- /dev/null +++ b/1850/CH9/EX9.7/exa_9_7.sce @@ -0,0 +1,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");
|