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

Run math blazing fast

GitHubX (Twitter)LinkedIn

Company

  • About
  • Pricing
  • Contact
  • License
  • Privacy

Learn

  • Docs
  • Blog
  • Benchmarks
  • RunMat vs MATLAB Online

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.

/
See all docs
Builtin Reference
    • colon
    • createArray
    • empty
    • eye
    • false
    • full
    • inf
    • linspace
    • logspace
    • magic
    • meshgrid
    • nan
    • nchoosek
    • ndgrid
    • nonzeros
    • ones
    • peaks
    • perms
    • rand
    • randi
    • randn
    • randperm
    • range
    • sparse
    • spdiags
    • speye
    • spones
    • sprand
    • true
    • zeros

true — Create logical arrays filled with true values using MATLAB-compatible size forms.

true creates logical arrays populated with true values across scalar, vector, matrix, and N-D size specifications, matching MATLAB-compatible sizing behavior.

Syntax

L = true()
L = true(n)
L = true(size_vector)
L = true(m, n, ...)
L = true(prototype)
L = true(..., "logical")
L = true(..., "like", prototype)

Inputs

NameTypeRequiredDefaultDescription
nSizeArgYes—Square size.
size_vectorSizeArgYes—Size vector defining output dimensions.
dimsSizeArgVariadic—Dimension sizes.
prototypeLikePrototypeYes—Prototype value when no numeric dimension arguments are provided.
typenameStringScalarNo"logical"Class override keyword (logical).
like_kwStringScalarYes"like"Like keyword.
prototypeLikePrototypeYes—Prototype array used for class/device.

Returns

NameTypeDescription
LLogicalArrayLogical output array.

Errors

IdentifierWhenMessage
—The 'like' keyword is provided without a prototype argument.true: expected prototype after 'like'
—The 'like' keyword is provided multiple times.true: multiple 'like' specifications are not supported
—A trailing option string is not supported.true: unrecognised option
—Dimension arguments fail numeric/shape parsing.true: dimension arguments must be numeric and nonnegative

How true works

  • true() returns the scalar logical true.
  • true(n) returns an n x n logical array of true values.
  • true(m, n, ...) returns a logical array with the requested dimensions.
  • true(sz) accepts a row size vector and returns an array with prod(sz) elements arranged using MATLAB column-major ordering.
  • true(___, 'like', prototype) uses the preceding size arguments and preserves supported sparse or gpuArray placement from the prototype; the output class remains logical.
  • All eight integer classes are accepted as exact size controls. Negative signed dimensions produce empty dimensions.
  • true(A) shape inference, single-precision size controls, resident size controls, and the trailing 'logical' option are optional RunMat language extensions.

Examples

Creating a 2x3 logical array of true values

mask = true(2, 3)

Expected output:

mask = [1 1 1; 1 1 1]

Creating a logical array from a size vector

dims = [2 1 3];
mask = true(dims)

Expected output:

mask =
  2x1x3 logical array
     1
     1
     1
     1
     1
     1

Creating a true mask like an existing array

A = rand(3, 2);
mask = true(size(A), 'like', A)

Expected output:

mask =
  3x2 logical array
     1     1
     1     1
     1     1

Using true with coding agents

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

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

FAQ

What does true() return?⌄

It returns the logical scalar true.

Does true(n) create a square array?⌄

Yes. true(n) returns an n x n logical array of true values, matching MATLAB behavior.

How does true(sz) interpret a size vector?⌄

A row vector is treated as the full set of dimensions, so true([2 3 4]) yields a 2x3x4 logical array.

Does true keep results on the GPU?⌄

Yes. When a gpuArray is supplied after like, the logical result is allocated through that array's owning provider and remains resident.

Is the 'logical' option required?⌄

No. true always returns logical values. RunMat can accept the redundant option when language extensions are enabled.

Related Array functions

Creation

colon · createArray · empty · eye · false · full · inf · linspace · logspace · magic · meshgrid · nan · nchoosek · ndgrid · nonzeros · ones · peaks · perms · rand · randi · randn · randperm · range · sparse · spdiags · speye · spones · sprand · zeros

Grouping

accumarray · combinations · discretize · findgroups · groupcounts · grp2idx · splitapply

Sorting Sets

argsort · intersect · ismember · ismembertol · issorted · issortedrows · setdiff · setxor · sort · sortrows · union · unique

Shape

blkdiag · cat · circshift · diag · flip · fliplr · flipud · horzcat · ipermute · kron · permute · repelem · repmat · reshape · rot90 · squeeze · toeplitz · tril · triu · vertcat

Indexing

find · ind2sub · sub2ind

Introspection

iscolumn · isempty · ismatrix · isrow · isscalar · isvector · length · ndims · numel · size

Open-source implementation

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

  • View the source for true 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 true works
  • Examples
  • Creating a 2x3 logical array of true values
  • Creating a logical array from a size vector
  • Creating a true mask like an existing array
  • Using true with coding agents
  • FAQ
  • Related Array functions
  • Creation
  • Grouping
  • Sorting Sets
  • Shape
  • Indexing
  • Introspection
  • Open-source implementation
  • About RunMat