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/CH9/EX9.9 | |
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/CH9/EX9.9')
-rwxr-xr-x | 1475/CH9/EX9.9/Example_9_9.sce | 10 | ||||
-rwxr-xr-x | 1475/CH9/EX9.9/Output_9_9.PNG | bin | 0 -> 7227 bytes |
2 files changed, 10 insertions, 0 deletions
diff --git a/1475/CH9/EX9.9/Example_9_9.sce b/1475/CH9/EX9.9/Example_9_9.sce new file mode 100755 index 000000000..3f8c6e864 --- /dev/null +++ b/1475/CH9/EX9.9/Example_9_9.sce @@ -0,0 +1,10 @@ +// Examcle 9.9 The following are the numbers of defects noted in 20 hundred
+clc;
+clear;
+Total=20;
+Def=sum([3 3 6 3 0 1 3 5 7 8 4 10 5 5 4 3 4 5 4 1]);
+c=Def/Total;
+CL=c;
+UCL=c+3*(sqrt(c));
+LCL=c-3*(sqrt(c));
+disp(LCL,"Lower Control Limit =",UCL,"Upper Control Limit",CL,"Centre Line = ",Total," Total No. of Samples =",Def,"Total defective items =");
diff --git a/1475/CH9/EX9.9/Output_9_9.PNG b/1475/CH9/EX9.9/Output_9_9.PNG Binary files differnew file mode 100755 index 000000000..0227224f4 --- /dev/null +++ b/1475/CH9/EX9.9/Output_9_9.PNG |