cond — Compute matrix condition numbers in MATLAB and RunMat.

k = cond(A) returns the condition number of matrix A, measuring sensitivity of linear-system solutions to perturbations. By default, it computes the 2-norm condition number from singular-value extrema, following MATLAB semantics.

Syntax

c = cond(A)
c = cond(A, p)

Inputs

NameTypeRequiredDefaultDescription
AAnyYesInput matrix.
pAnyNoNorm selector (1, 2, inf, or "fro").

Returns

NameTypeDescription
cNumericScalarCondition number estimate of A.

Errors

IdentifierWhenMessage
RunMat:cond:InvalidArgumentNorm selector argument is malformed or unsupported.cond: invalid argument
RunMat:cond:InvalidInputInput shape/type cannot be processed for condition-number evaluation.cond: invalid input
RunMat:cond:InternalRuntime fails while computing cond or executing fallback/upload paths.cond: internal runtime failure

How cond works

  • cond(A) and cond(A, 2) use the singular values of A, so rectangular matrices are supported.
  • cond(A, 1), cond(A, Inf), and cond(A, 'fro') require a square, invertible matrix and use the definition norm(A, p) * norm(inv(A), p) with MATLAB's norm semantics.
  • Scalars behave like 1x1 matrices. Non-zero scalars have condition number 1, while cond(0) = Inf.
  • Empty matrices return 0, matching MATLAB's convention.
  • Singular or rank-deficient matrices return Inf.
  • Complex inputs are handled in full complex arithmetic.

Does RunMat run cond on the GPU?

When the input already lives on a GPU, RunMat first looks for an acceleration provider that exposes the custom cond hook registered below. Current providers gather the matrix to host memory, reuse the shared CPU implementation, and then re-upload the scalar so downstream GPU computations preserve residency. This mirrors MATLAB semantics while keeping the user-facing API uniform.

GPU memory and residency

G = gpuArray([]);      % Empty 0x0 matrix on the GPU
k = cond(G);           % Returns 0 and keeps residency when possible
result = gather(k);

Expected output:

result = 0

Examples

Condition number of the identity matrix

A = eye(3);
k = cond(A)

Expected output:

k = 1

Diagnosing an ill-conditioned diagonal matrix

D = diag([1, 1e-8]);
k = cond(D)

Expected output:

k = 1.0e+8

Condition number of a rectangular matrix (2-norm)

A = [1 0; 0 1; 1 1];
k = cond(A, 2)

Expected output:

k = 1.7321

Using a different norm specification

A = [4 -1; 2 3];
k1 = cond(A, 1)
kInf = cond(A, Inf)

Expected output:

k1   = 2.1429
kInf = 2.1429

Complex-valued matrices

A = [1+2i 0; 3i 4-1i];
k = cond(A)

Expected output:

k = 3.0327

Empty inputs and GPU residency

G = gpuArray([]);      % Empty 0x0 matrix on the GPU
k = cond(G);           % Returns 0 and keeps residency when possible
result = gather(k)

Expected output:

result = 0

Using cond with coding agents

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

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

FAQ

What does a large condition number mean?

Large condition numbers (>> 1) indicate that small perturbations in the input can produce large changes in the solution of a linear system involving A. Values close to 1 indicate a well- conditioned matrix.

Why does cond return Inf for singular matrices?

Singular matrices have at least one zero singular value (or an undefined inverse), so the condition number is mathematically infinite. RunMat mirrors MATLAB and returns Inf in these cases.

Does cond support rectangular matrices?

Yes for the default 2-norm: cond(A) uses singular values and accepts any two-dimensional matrix. Norms 1, Inf, and 'fro' require a square, invertible matrix because they are defined using the matrix inverse.

How does cond handle empty matrices?

All norm choices return 0 for empty matrices (0x0), matching MATLAB's behaviour.

Will calling cond move my data off the GPU?

Only when the active provider lacks a dedicated implementation. In that case RunMat gathers the data, computes the scalar on the host, and uploads it back so subsequent GPU operations still see a device-resident value.

Solve

det · inv · linsolve · norm · null · pinv · rank · rcond · rref

Factor

chol · eig · lu · qr · svd

Open-source implementation

Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how cond 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.