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[MovingMedian] - compute moving medians for a data set
Calling Sequence
MovingMedian(X, m, options)
Parameters
X
-
data set
m
posint; moving window size
options
(optional) equation(s) of the form option=value where option is one of weights or ignore; specify options for the Statistics[MovingMedian] function
Description
The MovingMedian function computes moving medians for a set of observations. This is useful for smoothing the data, thus eliminating cyclic and irregular patterns and therefore enhancing the long term trends.
The first parameter X is a single data sample - given as a Vector or list. Each value represents an individual observation.
The second parameter m is the size of the moving window. The size of the moving window cannot exceed the number of elements in X (or the number of non-missing elements if ignore is set to true). The number of items in the answer is less than the number of items in data. Only complete neighborhoods are included, so the number of items is reduced by m-.
Options
The options argument can contain one or more of the options shown below. These options are described in more detail in the Statistics[Median] help page.
weights=rtable -- Vector of weights (one-dimensional rtable). The weights will be used to compute the local medians (see Statistics[Median]. The number of elements in the weights array should be equal to the size of the moving window.
ignore=truefalse -- This option is used to specify how to handle non-numeric data. If ignore is set to true all non-numeric items in data will be ignored.
Examples
See Also
Statistics, Statistics[DataSmoothing], Statistics[Median]
Download Help Document