movprod — Compute moving products in MATLAB and RunMat.
movprod(A,k) computes products over a sliding window of length k.
Syntax
M = movprod(A, k)
M = movprod(A, k, dim)
M = movprod(A, k, nanflag)
M = movprod(A, k, Name, Value)
M = movprod(A, k, nanflag, Name, Value)
M = movprod(A, k, dim, Name, Value)Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
A | Any | Yes | — | Input numeric, logical, or gpuArray data. |
k | NumericArray | Yes | — | Window length or two-element [kb kf] backward/forward window. |
dim | NumericArray | No | — | Dimension along which to move the window. |
nanflag | StringScalar | No | "includenan" | NaN handling mode: "includenan" or "omitnan". |
NameValue | Any | Variadic | — | Name-value options, including "Endpoints". |
Returns
| Name | Type | Description |
|---|---|---|
M | NumericArray | Moving-window reduction result. |
Errors
| Identifier | When | Message |
|---|---|---|
RunMat:movprod:InvalidArgument | Window length, dimension, nanflag, or name-value options are invalid. | moving window: invalid argument |
RunMat:movprod:InvalidInput | Input values cannot be converted to a supported moving-window domain. | moving window: invalid input |
RunMat:movprod:Internal | Moving-window execution fails due to allocation, provider, or shape operations. | moving window: internal failure |
How movprod works
kmay be a positive scalar window length or a two-element[kb kf]backward/forward window.- Pass an explicit
dimto move along a chosen dimension. 'includenan'is the default;'omitnan'and'omitmissing'skip NaN values inside each window.'Endpoints'supports'shrink'(default),'discard','fill', and numeric scalar fill values.'SamplePoints', spuses a strictly increasing numeric point vector for irregular moving windows. With sample points, RunMat currently supports shrink endpoints.- Real, logical, integer, scalar, vector, matrix, N-D, complex, and GPU numeric inputs are supported.
- Table/timetable
DataVariablesforms are tracked separately.
Example
Moving product with an asymmetric window
M = movprod([2 NaN 3 4], [1 0], 'omitnan')Expected output:
M = [2 2 3 12]Using movprod with coding agents
Open a RunMat example with live inputs, then ask the agent to explain how movprod changes the result.
Run a small movprod example, explain the result, then change one input and compare the output.
Related Math functions
Reduction
all · any · bounds · cummax · cummin · cumprod · cumsum · cumtrapz · diff · gradient · max · maxk · mean · median · min · mink · movmax · movmean · movmedian · movmin · movstd · movsum · movvar · nnz · prod · rms · std · sum · trapz · var
Elementwise
abs · angle · bsxfun · complex · conj · double · erf · erfcinv · exp · expm1 · factorial · flintmax · gamma · gammaln · heaviside · hypot · idivide · imag · intmax · intmin · ldivide · log · log10 · log1p · log2 · minus · nextpow2 · plus · pow2 · power · rdivide · real · realmax · realmin · realsqrt · rescale · sign · single · sqrt · swapbytes · times · uint32
Trigonometry
acos · acosh · asin · asinh · atan · atan2 · atanh · cos · cosd · cosh · cospi · deg2rad · pol2cart · rad2deg · sin · sind · sinh · sinpi · tan · tand · tanh
Structure
bandwidth · isdiag · ishermitian · issymmetric · istril · istriu · symrcm
Signal
blackman · butter · buttord · cheb2ord · conv · conv2 · deconv · downsample · envelope · filter · filtfilt · fir1 · freqz · gauspuls · hamming · hann · hilbert · periodogram · pulstran · pwelch · rectpuls · resample · sawtooth · sinc · spectrogram · square · tripuls · unwrap · upsample · zplane
Optim
coneprog · fminbnd · fminunc · fsolve · fzero · integral · linprog · lsqcurvefit · lsqnonlin · optimset · quad · secondordercone
Ops
cross · ctranspose · dot · mldivide · mpower · mrdivide · mtimes · pagemtimes · pagetranspose · trace · transpose
Open-source implementation
Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how movprod is executed, line by line, in Rust.
- View the source for movprod in Rust on GitHub
- Learn how the RunMat runtime works
- Found a bug? Open an issue with a minimal reproduction.
About RunMat
RunMat is an open-source runtime that executes MATLAB-syntax code blazing on any GPU. It is licensed under the Apache 2.0 license.
- RunMat automatically optimizes your math for GPU execution on Apple, Nvidia, and AMD hardware. No code changes needed. Simulations that took hours now take minutes.
- Start running code in seconds. RunMat runs in the browser, on the desktop, or from the CLI. No license server, no IT ticket.