Main Content

movmean

Description

M = movmean(A,k) returns the local k-point mean values, where each mean is calculated over a sliding window of length k across neighboring elements of A. When k is odd, the window is centered about the element in the current position. When k is even, the window is centered about the current and previous elements. The window size is automatically truncated at the endpoints when there are not enough elements to fill the window. When the window is truncated, the average is taken over only the elements that fill the window. M is the same size as A.

  • If A is a vector, then movmean operates along the length of the vector A.

  • If A is a multidimensional array, then movmean operates along the first dimension of A whose size does not equal 1.

  • If A is a table or timetable, then movmean operates along the variables of A. (since R2025a)

example

M = movmean(A,[kb kf]) computes the mean with a window of length kb+kf+1 that includes the element in the current position, kb elements backward, and kf elements forward.

example

M = movmean(___,dim) specifies the dimension of A to operate along for any of the previous syntaxes. For example, if A is a matrix, then movmean(A,k,2) operates along the columns of A, computing the k-element sliding mean for each row.

example

M = movmean(___,nanflag) specifies whether to include or omit NaN values in A. For example, movmean(A,k,"omitnan") ignores NaN values when computing each mean. By default, movmean includes NaN values.

example

M = movmean(___,Name,Value) specifies additional parameters for the moving average using one or more name-value arguments. For example, if x is a vector of time values, then movmean(A,k,"SamplePoints",x) computes the moving average relative to the times in x.

example

Examples

collapse all

Compute the three-point centered moving average of a row vector. When there are fewer than three elements in the window at the endpoints, take the average over the elements that are available.

A = [4 8 6 -1 -2 -3 -1 3 4 5];
M = movmean(A,3)
M = 1×10

    6.0000    6.0000    4.3333    1.0000   -2.0000   -2.0000   -0.3333    2.0000    4.0000    4.5000

Compute the three-point trailing moving average of a row vector. When there are fewer than three elements in the window at the endpoints, take the average over the elements that are available.

A = [4 8 6 -1 -2 -3 -1 3 4 5];
M = movmean(A,[2 0])
M = 1×10

    4.0000    6.0000    6.0000    4.3333    1.0000   -2.0000   -2.0000   -0.3333    2.0000    4.0000

Compute the three-point centered moving average for each row of a matrix. The window starts on the first row, slides horizontally to the end of the row, then moves to the second row, and so on. The dimension argument is two, which slides the window across the columns of A.

A = [4 8 6; -1 -2 -3; -1 3 4]
A = 3×3

     4     8     6
    -1    -2    -3
    -1     3     4

M = movmean(A,3,2)
M = 3×3

    6.0000    6.0000    7.0000
   -1.5000   -2.0000   -2.5000
    1.0000    2.0000    3.5000

Compute the three-point centered moving average of a row vector containing two NaN elements.

A = [4 8 NaN -1 -2 -3 NaN 3 4 5];
M = movmean(A,3)
M = 1×10

    6.0000       NaN       NaN       NaN   -2.0000       NaN       NaN       NaN    4.0000    4.5000

Recalculate the average, but omit the NaN values. When movmean omits NaN elements, it computes the average over the remaining elements in the window.

M = movmean(A,3,"omitnan")
M = 1×10

    6.0000    6.0000    3.5000   -1.5000   -2.0000   -2.5000         0    3.5000    4.0000    4.5000

Compute a 3-hour centered moving average of the data in A according to the time vector t.

A = [4 8 6 -1 -2 -3];
k = hours(3);
t = datetime(2016,1,1,0,0,0) + hours(0:5)
t = 1×6 datetime
   01-Jan-2016 00:00:00   01-Jan-2016 01:00:00   01-Jan-2016 02:00:00   01-Jan-2016 03:00:00   01-Jan-2016 04:00:00   01-Jan-2016 05:00:00

M = movmean(A,k,"SamplePoints",t)
M = 1×6

    6.0000    6.0000    4.3333    1.0000   -2.0000   -2.5000

Compute the three-point centered moving average of a row vector, but discard any calculation that uses fewer than three points from the output. In other words, return only the averages computed from a full three-element window, discarding endpoint calculations.

A = [4 8 6 -1 -2 -3 -1 3 4 5];
M = movmean(A,3,"Endpoints","discard")
M = 1×8

    6.0000    4.3333    1.0000   -2.0000   -2.0000   -0.3333    2.0000    4.0000

Create a table from the columns of a magic square.

A = magic(3);
T = array2table(A)
T=3×3 table
    A1    A2    A3
    __    __    __

    8     1     6 
    3     5     7 
    4     9     2 

Calculate the moving averages of the table variables using movmean.

M = movmean(T,3)
M=3×3 table
    A1     A2    A3 
    ___    __    ___

    5.5    3     6.5
      5    5       5
    3.5    7     4.5

To calculate moving averages only for specified variables, specify the DataVariables name-value argument.

M2 = movmean(T,3,DataVariables=["A2" "A3"])
M2=3×3 table
    A1    A2    A3 
    __    __    ___

    8     3     6.5
    3     5       5
    4     7     4.5

To append the moving averages to the table instead of replacing values, specify ReplaceValues as false.

M3 = movmean(T,3,ReplaceValues=false)
M3=3×6 table
    A1    A2    A3    A1_movmean    A2_movmean    A3_movmean
    __    __    __    __________    __________    __________

    8     1     6        5.5            3            6.5    
    3     5     7          5            5              5    
    4     9     2        3.5            7            4.5    

Input Arguments

collapse all

Input data, specified as a vector, matrix, multidimensional array, table, or timetable.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | logical | table | timetable

Window length, specified as a numeric or duration scalar. When k is a positive integer scalar, the centered average includes the element in the current position plus surrounding neighbors.

For example, movmean(A,3) computes an array of local three-point mean values.

movmean(A,3) computation. The elements in the sample window are 1, 3, and 5, so the resulting local mean is 3.

Directional window length, specified as a numeric or duration row vector containing two elements. When kb and kf are positive integer scalars, the calculation is over kb+kf+1 elements. The calculation includes the element in the current position, kb elements before the current position, and kf elements after the current position.

For example, movmean(A,[2 1]) computes an array of local four-point mean values.

movmean(A,[2 1]) computation. The elements in the sample window are 4, 1, 3, and 5, so the resulting local mean is 3.25.

Dimension to operate along, specified as a positive integer scalar. If you do not specify the dimension, then the default is the first array dimension whose size does not equal 1.

Dimension dim indicates the dimension that movmean operates along, that is, the direction in which the specified window slides.

Consider an m-by-n input matrix, A:

  • movmean(A,k,1) computes the k-element sliding mean for each column of A and returns an m-by-n matrix.

    movmean(A,k,1) column-wise operation

  • movmean(A,k,2) computes the k-element sliding mean for each row of A and returns an m-by-n matrix.

    movmean(A,k,2) row-wise operation

If A is a table or timetable, then you cannot specify dim. The movmean function always operates along the variables of tables and timetables. (since R2025a)

Missing value condition, specified as one of these values:

  • "includemissing" or "includenan" — Include NaN values in A when computing each mean. If any element in the window is NaN, then the corresponding element in M is NaN. "includemissing" and "includenan" have the same behavior.

  • "omitmissing" or "omitnan" — Ignore NaN values in A and compute each mean over fewer points. If all elements in the window are NaN, then the corresponding element in M is NaN. "omitmissing" and "omitnan" have the same behavior.

Name-Value Arguments

collapse all

Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: M = movmean(A,k,"Endpoints","fill")

Method to treat windows near endpoints, specified as one of these options:

ValueDescription
"shrink"Shrink the window size near the endpoints of the input to include only existing elements.
"discard"

Do not output any average values when the window does not completely overlap with existing elements.

If A is a table or timetable, then you cannot specify Endpoints as "discard".

"fill"Replace nonexisting elements with NaN.
numeric or logical scalarReplace nonexisting elements with the specified numeric or logical value.

Sample points for computing averages, specified as a vector. The sample points represent the locations of the data in A. Sample points do not need to be uniformly sampled. By default, the sample points vector is [1 2 3 ... ].

Moving windows are defined relative to the sample points, which must be sorted and contain unique elements. For example, if t is a vector of times corresponding to the input data, then movmean(rand(1,10),3,"SamplePoints",t) has a window that represents the time interval between t(i)-1.5 and t(i)+1.5.

When the sample points vector has data type datetime or duration, then the moving window length must have type duration.

If the sample points are nonuniformly spaced and Endpoints is specified, then its value must be "shrink".

Since R2025a

Table or timetable variables to operate on, specified as one of the options in this table.

  • If you do not specify DataVariables, then movmean operates on all variables. This behavior is the default behavior.

  • If you specify DataVariables, then movmean operates only on the specified variables. Other variables not specified by DataVariables pass through to the output without modification.

Indexing SchemeValues to SpecifyExamples

Variable name

  • A string scalar or character vector

  • A string array or cell array of character vectors

  • A pattern object

  • "A" or 'A' — A variable named A

  • ["A" "B"] or {'A','B'} — Two variables named A and B

  • "Var"+digitsPattern(1) — Variables named "Var" followed by a single digit

Variable index

  • An index number that refers to the location of a variable in the table

  • A vector of numbers

  • A logical vector. Typically, this vector is the same length as the number of variables, but you can omit trailing 0 (false) values.

  • 3 — The third variable from the table

  • [2 3] — The second and third variables from the table

  • [false false true] — The third variable

Function handle

  • A function handle that takes a table variable as input and returns a logical scalar

  • @isnumeric — All the variables containing numeric values

Variable type

  • A vartype subscript that selects variables of a specified type

  • vartype("numeric") — All the variables containing numeric values

Since R2025a

Replace values indicator, specified as one of these values when A is a table or timetable.

  • true or 1 — In the output table or timetable, replace input table or timetable variables with variables containing output values from movmean.

  • false or 0 — Append variables containing output values from movmean to the output table or timetable.

For vector, matrix, or multidimensional array input data, ReplaceValues is not supported.

More About

collapse all

Extended Capabilities

expand all

Version History

Introduced in R2016a

expand all