movmax
Moving maximum
Syntax
Description
M = movmax( returns the
local A,k)k-point maximum values, where each maximum 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 maximum is taken over only the
elements that fill the window. M is the same size as
A.
If
Ais a vector, thenmovmaxoperates along the length of the vectorA.If
Ais a multidimensional array, thenmovmaxoperates along the first dimension ofAwhose size does not equal 1.If
Ais a table or timetable, thenmovmaxoperates along the variables ofA. (since R2025a)
M = movmax(___, specifies the
dimension of dim)A to operate along for any of the previous syntaxes.
For example, if A is a matrix, then
movmax(A,k,2) operates along the columns of
A, computing the k-element sliding maximum
for each row.
M = movmax(___, specifies
whether to omit or include nanflag)NaN values in A.
For example, movmax(A,k,"includenan") includes all
NaN values when computing each maximum. By default,
movmax omits NaN values.
M = movmax(___, specifies
additional parameters for the moving maximum using one or more name-value arguments.
For example, if Name,Value)x is a vector of time values, then
movmax(A,k,"SamplePoints",x) computes the moving maximum
relative to the times in x.

![movmax(A,[2 1]) computation. The elements in the sample window are 4, 1, 3, and 5, so the resulting local maximum is 5.](movmax_windowing.png)

