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 /1475/CH4/EX4.15 | |
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 '1475/CH4/EX4.15')
-rwxr-xr-x | 1475/CH4/EX4.15/Example_4_15.sce | 8 | ||||
-rwxr-xr-x | 1475/CH4/EX4.15/Output_4_15.PNG | bin | 0 -> 5840 bytes |
2 files changed, 8 insertions, 0 deletions
diff --git a/1475/CH4/EX4.15/Example_4_15.sce b/1475/CH4/EX4.15/Example_4_15.sce new file mode 100755 index 000000000..e1d3e1296 --- /dev/null +++ b/1475/CH4/EX4.15/Example_4_15.sce @@ -0,0 +1,8 @@ +//Example 4.15 A random sample of size 10 was drawn from a normal population with an unknown mean
+clc;
+clear;
+n=10;
+v=44.1;
+x=[65 71 80 76 78 82 68 72 65 81];
+m=sum(x)/n;
+disp("inch",(m-1.96*sqrt(4.41)),"to",(m+1.96*sqrt(4.41)),"The 95% confidence interval ",v,"variance =",m,"Mean =",n,"Sample size");
diff --git a/1475/CH4/EX4.15/Output_4_15.PNG b/1475/CH4/EX4.15/Output_4_15.PNG Binary files differnew file mode 100755 index 000000000..870c7fc7a --- /dev/null +++ b/1475/CH4/EX4.15/Output_4_15.PNG |