RunMat
  • Pricing
RunMat
GitHub
GitHub
DownloadSign InTry in Browser
DesktopRuntimeServer
RunMat

Run math blazing fast

GitHubX (Twitter)LinkedIn

Company

  • About
  • Pricing
  • Contact

Explore

  • RunMat for academia
  • RunMat vs MATLAB Online
  • Benchmarks

Get product updates and release notes from the RunMat team.

© 2026 Dystr · Made withfor the scientific community.

RunMat™ is a registered trademark of Dystr, Inc. MATLAB® is a registered trademark of The MathWorks, Inc. RunMat is not affiliated with, endorsed by, or sponsored by The MathWorks, Inc.

LicensePrivacy
/
See all docs
Builtin Reference
    • fft
    • fft2
    • fftn
    • fftshift
    • ifft
    • ifft2
    • ifftn
    • ifftshift

fft — Compute discrete Fourier transforms in MATLAB and RunMat.

fft(X) computes the discrete Fourier transform of input data. For arrays, it operates along the first non-singleton dimension by default, with explicit length/dimension forms following MATLAB semantics.

Syntax

Y = fft(X)
Y = fft(X, N)
Y = fft(X, N, DIM)

Inputs

NameTypeRequiredDefaultDescription
XAnyYes—Input signal/array.
NNumericScalarNo[]Transform length along selected dimension.
DIMNumericScalarNofirst non-singleton dimensionDimension to transform along.

Returns

NameTypeDescription
YNumericArrayComplex Fourier spectrum output.

Errors

IdentifierWhenMessage
RunMat:fft:ArgCountMore than three input arguments are supplied.fft: expected fft(X), fft(X, N), or fft(X, N, DIM)
RunMat:fft:InvalidLengthLength argument N is invalid.fft: invalid length argument
RunMat:fft:InvalidDimensionDimension argument DIM is invalid.fft: invalid dimension argument
RunMat:fft:InvalidInputInput cannot be converted to supported numeric/complex domain.fft: invalid input
RunMat:fft:InternalFFT execution or tensor shaping fails.fft: internal error

How fft works

  • fft(X) transforms along the first dimension whose size is greater than 1.
  • fft(X, n) zero-pads or truncates X to length n before transforming along the default dimension.
  • fft(X, n, dim) applies the transform along dimension dim.
  • Integer inputs through 32 bits are transformed in double precision; single inputs produce single output and all other documented numeric classes produce double output.
  • Empty inputs remain empty; zero-padding with n produces zero-valued spectra.
  • GPU arrays are gathered to the host when the selected provider has no FFT implementation.

Examples

Computing the FFT of a real time-domain vector

x = [1 2 3 4];
Y = fft(x)

Expected output:

Y =
  Columns 1 through 4
   10 + 0i  -2 + 2i  -2 + 0i  -2 - 2i

Applying fft column-wise to a matrix

A = [1 2 3; 4 5 6];
F = fft(A)

Expected output:

F =
   5 + 0i   7 + 0i   9 + 0i
  -3 + 0i  -3 + 0i  -3 + 0i

Zero-padding before the FFT

x = [1 2 3];
Y = fft(x, 5)

Selecting the transform dimension for a row vector

x = [1 2 3 4];
Y = fft(x, [], 2)

FFT of a complex-valued signal

t = 0:3;
x = exp(1i * pi/2 * t);
Y = fft(x)

FFT with gpuArray inputs

g = gpuArray(rand(1, 1024));  % Residency is on the GPU
G = fft(g);                   % Falls back to host if provider FFT hooks are unavailable
result = gather(G)

Using fft with coding agents

Open a RunMat example with live inputs, then ask the agent to explain how fft changes the result.

Run a small fft example, explain the result, then change one input and compare the output.

FAQ

Does fft always return complex values?⌄

FFT results represent a complex spectrum. For gpuArray input the result is always stored as complex even when every imaginary component is zero.

What happens if I pass [] as the second argument?⌄

Passing [] leaves the transform length unchanged. This is equivalent to omitting the n parameter.

Can I transform along a dimension larger than the current rank?⌄

Yes. RunMat automatically treats trailing dimensions as length-1 and will create the requested dimension on output.

How does zero-padding work?⌄

When n is larger than the size of X along the transform dimension, RunMat pads with zeros before evaluating the FFT.

What precision is used for the FFT?⌄

RunMat computes FFTs in double precision on the host. Providers may use single or double precision depending on device capabilities.

Will RunMat run the FFT on my GPU automatically?⌄

When a provider installs an FFT hook, RunMat executes on the GPU. Otherwise, the runtime gathers the data and performs the transform on the CPU.

Is inverse FFT (ifft) available?⌄

Yes. Use ifft for the inverse transform.

How do I compute multi-dimensional FFTs?⌄

Use fft2 for the first two dimensions or fftn for an N-dimensional transform.

Does fft support complex strides or non-unit sampling intervals?⌄

fft assumes unit spacing. You can multiply the result by appropriate phase factors to account for custom sampling intervals.

Related Math functions

Fft

fft2 · fftn · fftshift · ifft · ifft2 · ifftn · ifftshift

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 · typecast · uint16 · uint32 · uint8

Trigonometry

acos · acosh · asin · asinh · atan · atan2 · atanh · cos · cosd · cosh · cospi · deg2rad · pol2cart · rad2deg · sin · sind · sinh · sinpi · tan · tand · tanh

Reduction

all · any · bounds · cummax · cummin · cumprod · cumsum · cumtrapz · diff · gradient · max · maxk · mean · median · min · mink · movmax · movmean · movmedian · movmin · movprod · movstd · movsum · movvar · nnz · prod · rms · std · sum · trapz · var

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

Rounding

ceil · fix · floor · mod · rem · round

Factor

chol · decomposition · eig · eigs · lu · qr · svd

Solve

cond · det · inv · linsolve · norm · null · pinv · rank · rcond · rref · vecnorm

Optim

coneprog · fminbnd · fminunc · fsolve · fzero · integral · linprog · lsqcurvefit · lsqnonlin · optimoptions · optimset · quad · secondordercone

Ops

cross · ctranspose · dot · mldivide · mpower · mrdivide · mtimes · pagemtimes · pagetranspose · trace · transpose

Symbolic

digits · int · limit · piecewise · sym · syms · vpa

Interpolation

griddedInterpolant · interp1 · interp1q · interp2 · pchip · ppval · spline

Discrete

lcm · primes

Ode

ode15s · ode23 · ode45

Poly

polyder · polyfit · polyint · polyval · roots

Open-source implementation

Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how fft is executed, line by line, in Rust.

  • View the source for fft 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.

Getting started · Benchmarks · Pricing

Download RunMat

Download RunMat for full performance, or use RunMat in your browser for zero setup.

Download RunMatOpen Sandbox
On this page
  • Syntax
  • Inputs
  • Returns
  • Errors
  • How fft works
  • Examples
  • Computing the FFT of a real time-domain vector
  • Applying fft column-wise to a matrix
  • Zero-padding before the FFT
  • Selecting the transform dimension for a row vector
  • FFT of a complex-valued signal
  • FFT with gpuArray inputs
  • Using fft with coding agents
  • FAQ
  • Related Math functions
  • Fft
  • Elementwise
  • Trigonometry
  • Reduction
  • Structure
  • Signal
  • Rounding
  • Factor
  • Solve
  • Optim
  • Ops
  • Symbolic
  • Interpolation
  • Discrete
  • Ode
  • Poly
  • Open-source implementation
  • About RunMat