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
    • 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

rectpuls — Generate sampled rectangular pulses.

rectpuls(T) returns samples of a unit-width rectangular pulse centered at zero. rectpuls(T, W) uses pulse width W.

Syntax

Y = rectpuls(T)
Y = rectpuls(T, W)

Inputs

NameTypeRequiredDefaultDescription
TNumericArrayYes—Sample times relative to the pulse center.
WNumericScalarNo1Pulse width.

Returns

NameTypeDescription
YNumericArrayRectangular pulse samples.

Errors

IdentifierWhenMessage
RunMat:rectpuls:InvalidInputInput times cannot be interpreted as real numeric samples.rectpuls: expected real numeric input
RunMat:rectpuls:WidthInvalidWidth is not a positive finite scalar.rectpuls: width must be a positive finite scalar
RunMat:rectpuls:ArgCountToo many input arguments are provided.rectpuls: expected 1 or 2 arguments
RunMat:rectpuls:InternalErrorInternal tensor construction or GPU gather fails.rectpuls: internal error

How rectpuls works

  • Operates element-wise on real numeric scalars, vectors, matrices, and N-D tensors; preserves input shape.
  • Returns 1 on the left-closed, right-open interval -W/2 <= T < W/2 and 0 outside it, so rectpuls(-0.5) is 1 while rectpuls(0.5) is 0 for the default width.
  • The width must be positive and finite.
  • The documented sample-time classes are single and double. Typed-integer sample times and widths are independent RunMat-mode extensions, admitted only when their authoritative values are exactly representable at the binary64 waveform boundary.
  • Complex and text inputs are rejected with a builtin-scoped error.

Examples

Default unit-width rectangular pulse

t = -0.5:0.25:0.5;
y = rectpuls(t)

Expected output:

y = [1 1 1 1 0]

Custom pulse width

t = -1:0.5:1;
y = rectpuls(t, 0.5)

Expected output:

y = [0 0 1 0 0]

Using rectpuls with coding agents

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

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

FAQ

What happens at the exact pulse edge?⌄

The interval is left-closed and right-open: RunMat returns 1 at T == -W/2 and 0 at T == W/2.

Can rectpuls be used inside pulstran?⌄

Yes. pulstran(T, D, 'rectpuls', W) evaluates rectangular pulses centered at each delay.

Related Math functions

Signal

blackman · butter · buttord · cheb2ord · conv · conv2 · deconv · downsample · envelope · filter · filtfilt · fir1 · freqz · gauspuls · hamming · hann · hilbert · periodogram · pulstran · pwelch · resample · sawtooth · sinc · spectrogram · square · tripuls · unwrap · upsample · zplane

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

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

Fft

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

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 rectpuls is executed, line by line, in Rust.

  • View the source for rectpuls 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 rectpuls works
  • Examples
  • Default unit-width rectangular pulse
  • Custom pulse width
  • Using rectpuls with coding agents
  • FAQ
  • Related Math functions
  • Signal
  • Elementwise
  • Trigonometry
  • Reduction
  • Structure
  • Rounding
  • Factor
  • Solve
  • Optim
  • Ops
  • Symbolic
  • Fft
  • Interpolation
  • Discrete
  • Ode
  • Poly
  • Open-source implementation
  • About RunMat