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 /48/CH13 | |
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 '48/CH13')
-rwxr-xr-x | 48/CH13/EX13.1/eg_13_1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/48/CH13/EX13.1/eg_13_1.sce b/48/CH13/EX13.1/eg_13_1.sce new file mode 100755 index 000000000..48f896163 --- /dev/null +++ b/48/CH13/EX13.1/eg_13_1.sce @@ -0,0 +1,23 @@ +clc;
+clear;
+disp("By following the general procedure for fault detection in the text book Page n.o 478");
+disp("According to 3 & 4 steps of general procedure all the inputs are taken as 0 and the output is checked]");
+disp("X: 0 0 0");
+disp(" A B A B");
+disp("Z: 1 0 1");
+disp("By following the step 5");
+disp("X: 1 0");
+disp(" B B A");
+disp("Z: 0 0");
+disp("Accoring to step 6");
+disp("X: 1 0 0 1 0 0");
+disp(" A D D D C D D");
+disp("Z: 0 3 3 1 2 3");
+disp("Step 7 & 8")
+disp("X: 1 1 0");
+disp(" D C A B");
+disp("Z: 1 1 1");
+disp("Whole checking experiment")
+disp("X: 0 0 0 1 0 1 0 0 1 0 0 1 1 0");
+disp(" A B A B B A D D D C D D C A B");
+disp("Z: 1 0 1 0 0 0 3 3 1 2 3 1 1 1");
\ No newline at end of file |