downsample — Decrease a signal's sample rate by keeping every Nth sample.
y = downsample(x, n) keeps every nth sample of x, starting at the first sample, along the first non-singleton dimension. y = downsample(x, n, phase) starts at the zero-based phase offset.
Syntax
y = downsample(x, 2)How downsample works
- Accepts numeric, logical, integer, complex, vector, matrix, N-D tensor, and GPU tensor inputs.
- Operates along the first non-singleton dimension, matching MATLAB's column-wise behavior for matrices and row-wise behavior for row vectors.
nmust be a finite positive integer scalar.phaseis optional, defaults to 0, and must be an integer scalar in the range0 <= phase < n.- The output keeps samples at zero-based positions
phase,phase + n,phase + 2*n, and so on. - No anti-aliasing filter is applied; use filtering operations separately when decimating sampled signals.
Examples
Keep every second row-vector sample
x = [1 2 3 4 5];
y = downsample(x, 2)Expected output:
y = [1 3 5]Start at the second sample with phase 1
x = [1 2 3 4 5];
y = downsample(x, 2, 1)Expected output:
y = [2 4]Downsample matrix columns
X = [1 3; 2 4; 5 7];
Y = downsample(X, 2)Expected output:
Y = [1 3; 5 7]Using downsample with coding agents
Open a RunMat example with live inputs, then ask the agent to explain how downsample changes the result.
Run a small downsample example, explain the result, then change one input and compare the output.
FAQ
Which dimension does downsample use?⌄
RunMat follows MATLAB's default and operates along the first non-singleton dimension.
Does downsample apply an anti-aliasing filter?⌄
No. downsample only selects samples. Apply a low-pass filter first when anti-aliasing is required.
Can I pass GPU tensors?⌄
Yes. GPU inputs are gathered through the active provider, converted on the host, and returned as host tensors.
Related Math functions
Signal
blackman · butter · conv · conv2 · deconv · filter · filtfilt · fir1 · freqz · gauspuls · hamming · hann · hilbert · pulstran · rectpuls · sawtooth · sinc · square · tripuls · unwrap · upsample
Elementwise
abs · angle · complex · conj · double · exp · expm1 · factorial · gamma · heaviside · hypot · imag · ldivide · log · log10 · log1p · log2 · minus · nextpow2 · plus · pow2 · power · rdivide · real · sign · single · sqrt · times
Trigonometry
acos · acosh · asin · asinh · atan · atan2 · atanh · cos · cosd · cosh · deg2rad · rad2deg · sin · sind · sinh · tan · tand · tanh
Reduction
all · any · cummax · cummin · cumprod · cumsum · cumtrapz · diff · gradient · max · mean · median · min · nnz · prod · std · sum · trapz · var
Structure
Open-source implementation
Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how downsample is executed, line by line, in Rust.
- View the source for downsample 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.