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 /2522/CH6/EX6.8/exm6_8.sce | |
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 '2522/CH6/EX6.8/exm6_8.sce')
-rwxr-xr-x | 2522/CH6/EX6.8/exm6_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2522/CH6/EX6.8/exm6_8.sce b/2522/CH6/EX6.8/exm6_8.sce new file mode 100755 index 000000000..00e371f86 --- /dev/null +++ b/2522/CH6/EX6.8/exm6_8.sce @@ -0,0 +1,11 @@ +//page no 186
+//example no 6.8
+//KEEPING THE RADIO ON.
+//to keep the radio on without affecting the other appliances, the D4 bit should always be 1
+//assuming an input input binary 10101010
+clc;
+A=[1 0 1 0 1 0 1 0];
+B=[0 0 0 1 0 0 0 0];
+Y=bitor(A,B); //ORing input (A) with B to keep the D4 bit always set
+disp(Y);
+printf('D4 bit will always be one without affecting the other bits');
|