Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Overview of the ProcessControl Package
Calling Sequence
ProcessControl[command](arguments)
command(arguments)
Description
The ProcessControl package provides a number of statistical control charts as well as tools for computing control limits for these charts.
Each command in the ProcessControl package can be accessed by using either the long form or the short form of the command name in the command calling sequence.
Because the underlying implementation of the ProcessControl package is a module, it is also possible to use the form ProcessControl:-command to access a command from the package. For more information, see Module Members.
Control Charts for Attributes
Control charts for attributes allow you to visualize quality characteristics that cannot be represented in numeric form. In such cases, all items are subdivided into two categories: conforming or nonconforming to the specification of this quality characteristic. The charts support procedures with constant and variable sample size.
The following is a list of available commands.
CChart
Generate the C chart
CControlLimits
Compute control limits for the C chart
NPChart
Generate the NP chart
NPControlLimits
Compute control limits for the NP chart
PChart
Generate the P chart
PControlLimits
Compute control limits for the P chart
UChart
Generate the U chart
UControlLimits
Compute control limits for the U chart
To display the help page for a particular command, click the corresponding link in the table, or enter ?ProcessControl[command_name] at the Maple prompt.
Control Charts for Variables
Control charts for variables allow you to visualize quality characteristics that can be represented in numeric form. The charts support procedures with constant and variable sample size.
EWMAChart
Generate the EWMA chart
EWMAControlLimits
Compute control limits for the EWMA chart
MAChart
Generate the MA chart
MAControlLimits
Compute control limits for the MA chart
MRChart
Generate the MR chart
MRControlLimits
Compute control limits for the MR chart
RChart
Generate the R chart
RControlLimits
Compute control limits for the R chart
SChart
Generate the S chart
SControlLimits
Compute control limits for the S chart
XBarChart
Generate the X-bar chart
XBarControlLimits
Compute control limits for the X-bar chart
XChart
Generate the X chart
XControlLimits
Compute control limits for the X chart
The Floating-Point Environment
Most ProcessControl package commands rely on external libraries that perform their computations in floating-point. These libraries include statistics and optimization routines provided by the Numerical Algorithms Group (NAG).
The routines used by the ProcessControl package use either the hardware floating-point environment or the arbitrary-precision software floating-point environment to perform the computations. To maximize efficiency, the solvers attempt to use hardware floats whenever possible. Software floats are used only when the environment variable UseHardwareFloats is set to 'false', or when UseHardwareFloats is 'deduced' and Digits is greater than the value of .
Data Sets
A data set is generally provided as a Vector. Most ProcessControl commands accept an Array or a list in place of a Vector. For greatest efficiency, it is recommended that data sets be provided as Vectors of data type float.
See Also
Statistics
References
Montgomery, Douglas C. Introduction to Statistical Quality Control. 2nd ed. New York: John Wiley & Sons, 1991.
Download Help Document