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

test — Return test-set masks from a cvpartition object.

test(c) returns a logical test mask for single-test-set partitions. test(c,i) returns masks for selected K-fold, leaveout, or custom test sets.

Syntax

mask = test(c)
mask = test(c, i)
mask = test(c, "all")

Inputs

NameTypeRequiredDefaultDescription
cAnyYes—cvpartition object.
iAnyNo—One-based test-set index, vector of indices, or 'all'.

Returns

NameTypeDescription
maskLogicalArrayLogical observation mask for one or more test sets.

Errors

IdentifierWhenMessage
RunMat:cvpartition:InvalidArgumentInputs, partition kinds, dimensions, indices, or name-value options are malformed.cvpartition: invalid argument
RunMat:cvpartition:InternalRunMat cannot allocate or construct a partition output.cvpartition: internal error

How test works

  • test(c) works for holdout, resubstitution, and custom partitions with one test-set column.
  • test(c,i) accepts a one-based single- or double-precision scalar or vector of test-set indices.
  • test(c,'all') returns one logical mask column per test set.
  • RunMat mode also accepts logical and all eight typed-integer index classes. Typed integers are decoded exactly as structural indices without conversion through double.
  • A resident index produces a resident logical mask owned by the same acceleration provider.
  • For resubstitution partitions, test(c) is all true because every observation is used for both training and testing.

Example

Get the test mask for one fold

c = cvpartition(6, 'KFold', 3);
idx = test(c, 2)

Expected output:

`idx` is a 6-by-1 logical vector.

Using test with coding agents

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

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

FAQ

How do I retrieve all test masks?⌄

Use test(c,'all'); columns correspond to test-set indices.

Can i be an integer array?⌄

In RunMat mode, yes. Every integer class is read exactly. MATLAB-compatible mode accepts the documented single- and double-precision index forms.

Does test preserve GPU residency?⌄

Yes. When i is resident, RunMat gathers it through its owning provider and restores the logical output to that provider.

Related Stats functions

Ml

bayesopt · classify · confusionmat · crossvalind · cvpartition · fitclinear · fitctree · fitlm · kmeans · knnsearch · lasso · lassoglm · linkage · lscov · mnrfit · optimizableVariable · pdist · pdist2 · perfcurve · predict · regress · ridge · squareform · 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

Random

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

Hist

histc · histcounts · histcounts2

Options

statget · statset

Open-source implementation

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

  • View the source for test 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 test works
  • Example
  • Get the test mask for one fold
  • Using test with coding agents
  • FAQ
  • Related Stats functions
  • Ml
  • Summary
  • Random
  • Hist
  • Options
  • Open-source implementation
  • About RunMat