summaryrefslogtreecommitdiff
path: root/884/CH1/EX1.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /884/CH1/EX1.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '884/CH1/EX1.7')
-rwxr-xr-x884/CH1/EX1.7/Example1_7.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/884/CH1/EX1.7/Example1_7.sce b/884/CH1/EX1.7/Example1_7.sce
new file mode 100755
index 000000000..9aa9a9d0b
--- /dev/null
+++ b/884/CH1/EX1.7/Example1_7.sce
@@ -0,0 +1,17 @@
+// Dimensional Analysis
+
+clear;
+clc;
+
+printf("\t Example 1.7\n");
+
+L=5.2;//volume in litres
+
+cc=1000*L;//litre to cm^3
+
+mc=cc/10^6;//cm^3 to m^3
+
+printf("\t the volume of blood is : %4.1f *10^-3 m^3\n",mc*10^3);
+
+
+//End