who — List the names of variables in the workspace or MAT-files (MATLAB-compatible).
who returns the names of variables that are visible in the active workspace. You can filter the result using wildcard patterns, regular expressions, or by reading directly from MAT-files without loading the data.
How who works in RunMat
whowith no arguments lists every variable in the current workspace, sorted alphabetically.who pattern1 pattern2 ...accepts character vectors or string scalars with MATLAB wildcard syntax (*,?,[abc]). Any variable name that matches at least one pattern is returned.who('-regexp', expr1, expr2, ...)keeps names that match any of the supplied regular expressions.who('global')lists only global variables in the active workspace.who('-file', filename, ...)inspects the variables stored in a MAT-file. You can combine this option with explicit names or-regexpselectors.- The result is a column cell array of character vectors (consistent with MATLAB). Empty results return a
0×1cell array so that idioms likeisempty(who(...))work as expected.
How who runs on the GPU
who is a pure introspection builtin that runs on the CPU. When a variable is a gpuArray, RunMat leaves it resident on the device and reports its name without triggering any device-to-host copies. Only scalar selector arguments are gathered if they are stored on the GPU.
GPU memory and residency
No. who never requires you to gather data or move arrays between the host and GPU. It simply reports variable names, regardless of residency. Use gpuArray or gather only when you explicitly need to control where data lives.
Examples
List All Workspace Variables
a = 42;
b = rand(3, 2);
names = whoExpected output:
names =
2×1 cell array
{"a"}
{"b"}Filter With Wildcard Patterns
alpha = 1;
beta = 2;
names = who("a*")Expected output:
names =
1×1 cell array
{"alpha"}Use Regular Expressions
x1 = rand;
x2 = rand;
matches = who('-regexp', '^x\d$')Expected output:
matches =
2×1 cell array
{"x1"}
{"x2"}Inspect Variables Stored In A MAT-File
save('snapshot.mat', 'alpha', 'beta')
file_names = who('-file', 'snapshot.mat')Expected output:
file_names =
2×1 cell array
{"alpha"}
{"beta"}List Only Global Variables
global shared;
local = 1;
globals = who('global')Expected output:
globals =
1×1 cell array
{"shared"}FAQ
What type does who return?
A column cell array of character vectors, matching MATLAB behaviour.
Are the names sorted?
Yes. Results are sorted alphabetically so that diffs are deterministic.
Can I mix wildcard patterns and -regexp?
Yes. The final result includes any name matched by either the wildcard selectors or the regular expressions.
What happens if no variables match?
You receive a 0×1 cell array. You can call isempty on it to check for an empty result.
Can I call who('-file', ...) on large MAT-files?
Yes. The builtin reads just enough metadata to enumerate variable names; it does not load the data into the workspace.
Related functions to explore
These functions work well alongside who. Each page has runnable examples you can try in the browser.
whos, which, class, size, load, save, gpuArray, gather, isa, ischar, isstring
Open-source implementation
Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how who works, line by line, in Rust.
- View who.rs on GitHub
- Learn how the 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 — faster, on any GPU, with no license required.
- Simulations that took hours now take minutes. RunMat automatically optimizes your math for GPU execution on Apple, Nvidia, and AMD hardware. No code changes needed.
- Start running code in seconds. Open the browser sandbox or download a single binary. No license server, no IT ticket, no setup.
- A full development environment. GPU-accelerated 2D and 3D plotting, automatic versioning on every save, and a browser IDE you can share with a link.