Process Mean & Sigma VI
- Updated2024-11-20
- 3 minute(s) read
Computes process mean and sigma and upper and lower natural process limits from process samples. The process sigma may be estimated in several ways. If the sample size is >1, either sample standard deviation s or range R can be used to estimate the process sigma. s or R are selected by the type input. If the sample size is 1, the moving range is used to estimate the process sigma. To calculate process mean and sigma on a 1D array, use the array builder primitive to create a 2D array and then wire to the samples X input. This VI interprets either a single column or a single row in a 2D array as sample size = 1.

Inputs/Outputs
![]() ![]() (U16) - Type of process sigma computation to perform. s: base process sigma on mean sample standard deviation (default) R: base process sigma on mean sample Range Note: if sample size is 1, process sigma is based on mean moving Range. ![]() (I32) - This input is ignored unless the sample size i.e. all the points in the input array samples X is contained in a single row, or there is only one column in the input array, in which case the moving range is used as a basis for estimating process mean and sigma. Min value for n is 2, max is 25. By default n is 2. ![]() (DBL) - sigma multiplier for calculating upper and lower natural process limits. By default, sigma is multiplied by 3.0. ![]() (DBL) - mean of the process, estimated from X-bar-bar (or x-bar if sample size is 1). ![]() (DBL) - sigma of the process, estimated from S-bar/c4 if type is S, R-bar/d2 if type is R, or mR-bar/d2 if sample size is 1. ![]() (DBL) - upper natural process limit of the process computed as process mean + sigma Multiplier * process sigma. By default this is process mean + 3.0*process sigma. ![]() (DBL) - lower natural process limit of the process computed as process mean - sigma multiplier * process sigma. By default this is process mean - 3.0*process sigma. |