Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
ProcessControl[MAChart] - generate the MA chart
MAChart(X, options, plotoptions)
Parameters
X
-
data
options
(optional) equation(s) of the form option=value where option is one of bandwidth, color, confidencelevel, controllimits, ignore, mu, samplesize, or sigma; specify options for generating the MA chart
plotoptions
(optional) parameters to pass to the plot command
Description
The MAChart command generates the moving average (MA) control chart for the specified observations. The chart also contains the upper control limit (UCL), the lower control limit (LCL), and the mean value (represented by the center line) of the underlying quality characteristic. Unless explicitly given, the control limits are computed based on the data.
The first parameter X is a single data sample, given as a Vector or list. Each value represents the mean of an individual sample.
Computation
All computations involving data are performed in floating-point; therefore, all data provided must have type realcons and all returned solutions are floating-point, even if the problem is specified with exact values.
For more information about computation in the ProcessControl package, see the ProcessControl help page.
Options
The options argument can contain one or more of the following options.
bandwidth=posint -- This option specifies the size of the moving window. The default value is 5.
color=list -- This option specifies colors of the various components of the MA chart. The value of this option must be a list containing the color of the control limits, center line, data to be plotted, and the specification limits.
confidencelevel=realcons -- This option specifies the required confidence level. The default value is 0.9973, corresponding to a 3 sigma confidence level.
controllimits=deduce or [realcons, realcons] -- This option specifies the values for the control limits. The first element is the value of the lower control limit. The second element is the value of the upper control limit. For data with variable sample size, the value of this option must be a list of control limits for each sample. If this option is set to deduce (the default value), the control limits are computed based on the data.
ignore=truefalse -- This option controls how missing values are handled by the MAChart command. Missing values are represented by undefined or Float(undefined). So, if ignore=false and X contains missing data, the MAChart command returns undefined. If ignore=true, all missing items in X are ignored. The default value is true.
mu=deduce or realcons -- This option specifies the mean of the underlying quality characteristic.
samplesize=posint -- This option specifies the size of individual samples. The default value is 1.
sigma=deduce or realcons -- This option specifies the standard deviation of the underlying quality characteristic.
Examples
See Also
infolevel, ProcessControl, ProcessControl[MAControlLimits], Statistics
References
Montgomery, Douglas C. Introduction to Statistical Quality Control. 2nd ed. New York: John Wiley & Sons, 1991.
Download Help Document