diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /196/CH6/EX6.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '196/CH6/EX6.5')
-rwxr-xr-x | 196/CH6/EX6.5/example_6_5.sce | 10 | ||||
-rwxr-xr-x | 196/CH6/EX6.5/result_6_5.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/196/CH6/EX6.5/example_6_5.sce b/196/CH6/EX6.5/example_6_5.sce new file mode 100755 index 000000000..c11662443 --- /dev/null +++ b/196/CH6/EX6.5/example_6_5.sce @@ -0,0 +1,10 @@ +//Chapter 6
+//Example 6-5
+//ProbOnDurationOfOutputPulse
+//Page 155
+clear;clc;
+//Given
+Rf = 100*10^3 ;//Feedback Resistance
+C = 0.1*10^-6 ;
+t = (Rf * C)/ 5 ;
+printf ( "\n\n Duration of output pulse of one-shot = %.4f sec ", t )
\ No newline at end of file diff --git a/196/CH6/EX6.5/result_6_5.txt b/196/CH6/EX6.5/result_6_5.txt new file mode 100755 index 000000000..7d97910ed --- /dev/null +++ b/196/CH6/EX6.5/result_6_5.txt @@ -0,0 +1 @@ + Duration of output pulse of one-shot = 0.0020 sec
\ No newline at end of file |