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.3 | |
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.3')
-rwxr-xr-x | 1475/CH4/EX4.3/Example_4_3.sce | 9 | ||||
-rwxr-xr-x | 1475/CH4/EX4.3/Output_4_3.PNG | bin | 0 -> 3616 bytes |
2 files changed, 9 insertions, 0 deletions
diff --git a/1475/CH4/EX4.3/Example_4_3.sce b/1475/CH4/EX4.3/Example_4_3.sce new file mode 100755 index 000000000..e8bc666b9 --- /dev/null +++ b/1475/CH4/EX4.3/Example_4_3.sce @@ -0,0 +1,9 @@ +//Example 4.3 The following observations constitute a random sample from an unknown population
+clear;
+clc;
+x=[14 19 17 20 25];
+n=5;
+M=sum(x)/n;
+s_d=sqrt(sum((x-M)^2)/4);
+SE=s_d/sqrt(n);
+disp(SE,"Standard Error =",s_d,"Standard Mean",M,"Mean");
diff --git a/1475/CH4/EX4.3/Output_4_3.PNG b/1475/CH4/EX4.3/Output_4_3.PNG Binary files differnew file mode 100755 index 000000000..5ecfc89c0 --- /dev/null +++ b/1475/CH4/EX4.3/Output_4_3.PNG |