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 /1332/CH1/EX1.36 | |
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 '1332/CH1/EX1.36')
-rwxr-xr-x | 1332/CH1/EX1.36/1_36.pdf | bin | 0 -> 6068 bytes | |||
-rwxr-xr-x | 1332/CH1/EX1.36/1_36.sce | 9 |
2 files changed, 9 insertions, 0 deletions
diff --git a/1332/CH1/EX1.36/1_36.pdf b/1332/CH1/EX1.36/1_36.pdf Binary files differnew file mode 100755 index 000000000..980948a73 --- /dev/null +++ b/1332/CH1/EX1.36/1_36.pdf diff --git a/1332/CH1/EX1.36/1_36.sce b/1332/CH1/EX1.36/1_36.sce new file mode 100755 index 000000000..eb586d51b --- /dev/null +++ b/1332/CH1/EX1.36/1_36.sce @@ -0,0 +1,9 @@ +//Example 1.36
+//Division
+//Page no. 28
+clc;clear;close;
+a=[0.1132e1,0.1132e-6,0.1132e6];b=[0.1000e-99,0.1000e99,0.1000e3];
+for i=1:3
+ c(i)=a(i)/b(i)
+ printf('\nDivision of %.2g by %.3g= %.3g\n',a(i),b(i),c(i))
+end
|