RunMat
GitHub

ind2rgb — Convert indexed images and colormaps to RGB in MATLAB and RunMat.

ind2rgb(X, map) maps indexed image values through an N-by-3 colormap to produce truecolor RGB output. Indexing and output-shape behavior follow MATLAB semantics.

Syntax

RGB = ind2rgb(X, map)

Inputs

NameTypeRequiredDefaultDescription
XAnyYesIndexed image values.
mapAnyYesNx3 colormap.

Returns

NameTypeDescription
RGBNumericArrayRGB truecolor image converted from indexed image and colormap.

Errors

IdentifierWhenMessage
RunMat:ind2rgb:TooManyInputsMore than two input arguments are supplied.ind2rgb: too many input arguments
RunMat:ind2rgb:InvalidInputInputs cannot be interpreted as numeric indexed image and numeric colormap tensors.ind2rgb: invalid input
RunMat:ind2rgb:InvalidColormapThe map argument is not an Nx3 colormap.ind2rgb: map must be an Nx3 colormap

How ind2rgb works

  • Double and single index arrays use 1-based colormap indices.
  • uint8 and uint16 index arrays use zero-based indexed-image values.
  • The output appends a third RGB channel dimension.

Example

Indexed Image To RGB

RGB = ind2rgb(X, map);

Expected output:

% RGB is size(X) with a third RGB channel

Using ind2rgb with coding agents

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

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

Open-source implementation

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

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.