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
Statistics[MakeProcedure] - generate a procedure for calculating statistical quantities
Calling Sequence
MakeProcedure(stat, inp, params)
Parameters
stat
-
name; statistical quantity to calculate
inp
algebraic, rtable, 'randomvariable', 'sample'; primary input to procedure
params
(optional) a sequence representing the arguments of the generated procedure
options
(optional) equation(s) of the form option=value passed to the statistical quantity being used
Description
The MakeProcedure function generates a procedure that can be used to calculate various statistical quantities.
The first parameter is the name of a statistical quantity (for available statistical quantities see Statistics[DescriptiveStatistics]).
The second parameter is the primary input to this procedure. If this parameter is an algebraic expression involving random variables or a distribution then the procedure will calculate the statistical quantity on the given expression. Similarly, if the parameter is an rtable, the statistical quantity will be calculated on the provided dataset. If 'randomvariable' is specified, the procedure will accept as its first parameter an expression involving random variables (type algebraic). Finally, if 'sample' is specified, the procedure will accept a dataset (type rtable) as its first parameter.
The third parameter specifies the arguments for the generated procedure. If this parameter is specified, all arguments of the selected statistic must be specified as they would in a procedure definition. Alternatively, parameters may be replaced with values that are instead used when performing the statistical operation.
Computation
For efficiency, all computations 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 Statistics package, see the Statistics[Computation] help page.
Examples
Generate a procedure for calculating the moment on an array.
Generate a procedure for calculating the 4th moment of any sample.
Generate a procedure for calculating the moment of a Normal random variable.
Generate a procedure for calculating the 4th moment of any random variable.
See Also
Statistics, Statistics[Computation], Statistics[DescriptiveStatistics], Statistics[RandomVariables]
Download Help Document