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
    • binornd
    • bootstrp
    • datasample
    • dividerand
    • exprnd
    • gamrnd
    • lhsdesign
    • mvnrnd
    • normrnd
    • random
    • randsample
    • rng
    • trnd
    • unidrnd
    • unifrnd
    • wblrnd

bootstrp — Bootstrap samples and evaluate a statistic.

bootstrp(nboot,bootfun,d) draws nboot bootstrap samples with replacement from d and applies bootfun to each sample. bootstrp(nboot,bootfun,d1,...,dN) resamples rows jointly across nonscalar data arguments while scalar arguments are passed through unchanged. [bootstat,bootsam] = bootstrp(...) also returns one-based bootstrap sample indices.

Syntax

bootstat = bootstrp(nboot, bootfun, d)
bootstat = bootstrp(nboot, bootfun, d1, ..., dN)
[bootstat, bootsam] = bootstrp(___)

Inputs

NameTypeRequiredDefaultDescription
nbootIntegerScalarYes—Number of bootstrap samples.
bootfunAnyYes—Function handle applied to each bootstrap sample.
dataAnyVariadic—Data arrays and name-value options.

Returns

NameTypeDescription
bootstatNumericArrayBootstrap statistics, one bootstrap replicate per row.
bootsamNumericArrayOne-based bootstrap sample indices.

Returned values from bootstrp depend on how many outputs the caller requests.

Errors

IdentifierWhenMessage
RunMat:bootstrp:InvalidArgumentInputs, dimensions, replacement flags, or weights are malformed.sampling: invalid argument
RunMat:bootstrp:InternalInternal conversion or allocation fails.sampling: internal error

How bootstrp works

  • Each row of bootstat contains one bootstrap replicate. Nonscalar bootfun outputs are flattened into one row per replicate.
  • A single vector input is sampled along its first nonsingleton dimension; multiple nonscalar inputs are sampled by rows and must have matching row counts.
  • bootfun can be a function handle or an empty array. Empty bootfun skips callback evaluation and returns an empty double bootstat with bootsam available as the second output; a text function name is a gated RunMat extension.
  • "Weights",w samples rows proportionally to nonnegative weights with at least one positive value.
  • "Options",opts accepts a statset-style options struct for compatibility. Parallel execution options are accepted but currently evaluated serially.
  • Public numeric controls, data, and weights are single or double; logical, string, char, and cell sample data is also supported. Integer nboot, integer sample data, integer weights, logical nboot, and logical weights are independently gated RunMat extensions.
  • Integer sample data is indexed without floating conversion. Homogeneous numeric or logical callback output determines bootstat class, including native single and every integer class; bootsam is always double.
  • Interactive gpuArray input is independently gated and gathered only after compatibility admission.

Examples

Bootstrap a mean

b = bootstrp(1000, @mean, x)

Return sample indices

[b,bootsam] = bootstrp(200, @median, x)

Bootstrap a two-input statistic

b = bootstrp(500, @corr, x, y)

Using bootstrp with coding agents

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

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

FAQ

Does bootstrp use the global random stream?⌄

Yes. It uses RunMat's global random stream, like datasample and randsample.

Does bootstrp run callbacks in parallel?⌄

No. RunMat accepts the Options name-value for MATLAB compatibility, but callback evaluation is currently serial.

Can bootstrp sample integer arrays?⌄

In RunMat mode, yes: all eight integer classes are sampled exactly and the callback receives the same class. MATLAB-compatible mode rejects this extension because the public nongrouping numeric data domain is single or double.

What class does bootstat use?⌄

The callback's homogeneous numeric or logical output class determines bootstat, while bootsam is double. Inconsistent callback output sizes or classes raise an error.

Related Stats functions

Random

binornd · datasample · dividerand · exprnd · gamrnd · lhsdesign · mvnrnd · normrnd · random · randsample · rng · trnd · unidrnd · unifrnd · wblrnd

Ml

bayesopt · classify · confusionmat · crossvalind · cvpartition · fitclinear · fitctree · fitlm · kmeans · knnsearch · lasso · lassoglm · linkage · lscov · mnrfit · optimizableVariable · pdist · pdist2 · perfcurve · predict · regress · ridge · squareform · test · training · tsne

Summary

binocdf · boxplot · cdf · cdfplot · chi2cdf · corr · corrcoef · corrcov · cov · cov2corr · dummyvar · ecdf · filloutliers · fitdist · geomean · grpstats · harmmean · icdf · isoutlier · kstest · kurtosis · lsline · mad · mode · nanmax · normalize · normcdf · norminv · normpdf · onehotdecode · onehotencode · pdf · prctile · quantile · refline · rmse · skewness · tabulate · tcdf · tiedrank · tinv · tpdf · ttest2 · wblinv

Hist

histc · histcounts · histcounts2

Options

statget · statset

Open-source implementation

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

  • View the source for bootstrp 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 bootstrp works
  • Examples
  • Bootstrap a mean
  • Return sample indices
  • Bootstrap a two-input statistic
  • Using bootstrp with coding agents
  • FAQ
  • Related Stats functions
  • Random
  • Ml
  • Summary
  • Hist
  • Options
  • Open-source implementation
  • About RunMat