diff options
Diffstat (limited to '1475/CH9/EX9.1/Example_9_1.sce')
-rwxr-xr-x | 1475/CH9/EX9.1/Example_9_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1475/CH9/EX9.1/Example_9_1.sce b/1475/CH9/EX9.1/Example_9_1.sce new file mode 100755 index 000000000..2ebf37ae0 --- /dev/null +++ b/1475/CH9/EX9.1/Example_9_1.sce @@ -0,0 +1,10 @@ +// Example 9.1 In order to construct a control a contol Chart
+clc;
+clear;
+n=10;
+R=0.20;
+X=8.25;
+A2=0.308;
+UCL=X+(A2*R);
+LCL=X-(A2*R);
+disp(LCL,"Lower Control Limit =",UCL,"Upper Control Limit",A2,"Constant of conversion =",n," Sample Size =");
|