summaryrefslogtreecommitdiff
path: root/911/CH5/EX5.11.a
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /911/CH5/EX5.11.a
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '911/CH5/EX5.11.a')
-rw-r--r--911/CH5/EX5.11.a/ex_5_11_a.pdfbin0 -> 113609 bytes
-rw-r--r--911/CH5/EX5.11.a/ex_5_11_a1.sce28
2 files changed, 28 insertions, 0 deletions
diff --git a/911/CH5/EX5.11.a/ex_5_11_a.pdf b/911/CH5/EX5.11.a/ex_5_11_a.pdf
new file mode 100644
index 000000000..b90756b00
--- /dev/null
+++ b/911/CH5/EX5.11.a/ex_5_11_a.pdf
Binary files differ
diff --git a/911/CH5/EX5.11.a/ex_5_11_a1.sce b/911/CH5/EX5.11.a/ex_5_11_a1.sce
new file mode 100644
index 000000000..d15c48ac0
--- /dev/null
+++ b/911/CH5/EX5.11.a/ex_5_11_a1.sce
@@ -0,0 +1,28 @@
+// example 5.11(a)//
+clc
+clear ;
+disp ('Given the truthtable has high output for following conditons : ' );
+a =[1 0 0 0; 1 1 0 1 ;1 1 0 0 ; 1 0 0 0 ]
+//given input conditions for which output is high//
+disp (a)
+for (i =1:4)
+if a(i ,1) ==1 then
+b(i ,1)= 'A'
+else
+b(i ,1)= 'A^ '
+end
+if a(i ,2) ==1 then
+b(i ,2)= 'B '
+else
+b(i ,2)= 'B^ '
+end
+if a(i ,3) ==1 then
+b(i ,3)= 'C '
+else
+b(i ,3)= 'C^ '
+end
+end
+disp ( 'When you OR these products you get : ' )
+//displaying sum of products
+x= strcat ([b(1 ,1) '+' b(3 ,3) ]);
+disp (x) \ No newline at end of file