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 /45/CH11/EX11.7 | |
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 '45/CH11/EX11.7')
-rwxr-xr-x | 45/CH11/EX11.7/example_11_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/45/CH11/EX11.7/example_11_7.sce b/45/CH11/EX11.7/example_11_7.sce new file mode 100755 index 000000000..e4ac0031c --- /dev/null +++ b/45/CH11/EX11.7/example_11_7.sce @@ -0,0 +1,10 @@ +//example 11.7
+clc;
+clear;
+disp('Given karnaugh map '); //given kmap
+disp(' 00 01 11 10');
+disp('00 11 00'' 11 00''');
+disp('01 01'' 11 11 01''');
+disp('11 10 11 11'' 10');
+disp('10 10'' 10'' 11 11');
+disp('Yes, the circuit may face problem in its operation. When the circuit is at stable state xyAB = 1111 and input AB changes from 11 --> 10 the circuit oscillates between xyAB = 1110 and xy AB = 1010. Also there can be a criticl race problem if at stable state xyAB = 0001, input AB chnge from 01 to 00. The circuit may settle at xyAB = 0100 or xyAB = 1000 depending on which of x and y changes first at the feedbck path. Non-critical race situatuion occurs if at stable state xyAB = 0010 the input AB change from 10 to 00. ');
\ No newline at end of file |