summaryrefslogtreecommitdiff
path: root/149/CH35/EX35.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /149/CH35/EX35.10
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 '149/CH35/EX35.10')
-rwxr-xr-x149/CH35/EX35.10/ex10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/149/CH35/EX35.10/ex10.sce b/149/CH35/EX35.10/ex10.sce
new file mode 100755
index 000000000..6159bcfc5
--- /dev/null
+++ b/149/CH35/EX35.10/ex10.sce
@@ -0,0 +1,13 @@
+clc
+disp('m1,d1 and n1 denotes mean,deviation and no. of objects in first sample')
+m1=67.85
+d1=2.56
+n1=6400
+disp('m2,d2 and n2 denotes mean,deviation and no. of objects in second sample')
+m2=68.55
+d2=2.52
+n2=1600
+disp('S.E. of the difference of the mean heights is ')
+e=((d1^2/n1)+(d2^2/n2))^0.5
+m1-m2
+disp('|m1-m2| > 10e,this is highly significant.hence,the data indicates that the sailors are on the average taller than the soldiers.') \ No newline at end of file