RunMat
GitHub

tand — Compute element-wise tangent values for degree-based angles with MATLAB-compatible canonical handling.

y = tand(x) computes tangent using degree-based angles rather than radians. It follows MATLAB-compatible canonical handling for key multiples, including exact zeros at 180-degree multiples and poles at odd 90-degree multiples.

Syntax

Y = tand(X)

Inputs

NameTypeRequiredDefaultDescription
XAnyYesInput scalar, array, logical array, complex value, or gpuArray.

Returns

NameTypeDescription
YAnyElement-wise tangent result with degree input semantics.

Errors

IdentifierWhenMessage
RunMat:tand:InvalidInputInput cannot be interpreted as supported numeric/logical/complex data.tand: invalid input
RunMat:tand:InternalInternal gather/conversion/allocation flow failed.tand: internal error

How tand works

  • Operates element-wise on scalars, vectors, matrices, and N-D tensors.
  • Integer and logical inputs are promoted to double precision before evaluation.
  • Returns exactly 0 at multiples of 180 and exactly ±1 at multiples of 45.
  • Returns +Inf at +90 (and angles equivalent under modulo 360) and -Inf at -90 (and equivalent angles).
  • Complex inputs delegate to the analytic extension of tan after scaling by pi/180; exact-value treatment for complex operands is deferred.
  • Output shape matches the input shape; non-finite inputs propagate as NaN.
  • String inputs are unsupported and raise a builtin-scoped error.

Examples

Tangent of a canonical degree angle

y = tand(45)

Expected output:

y = 1

Tangent at the +/-90 poles returns +/-Inf

y = tand([90 -90])

Expected output:

y = [Inf -Inf]

Tangent of a multiple of 180 returns exactly zero

y = tand(180)

Expected output:

y = 0

Using tand with coding agents

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

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

FAQ

Why does tand(90) return Inf instead of a very large finite number?

MATLAB defines tand(90) = Inf and tand(-90) = -Inf at the poles. Naively evaluating tan(90*pi/180) would return a huge finite number because pi/180 is not exact in floating point, so RunMat short-circuits the poles to match MATLAB.

Is tand(x) equivalent to tan(x*pi/180)?

Mathematically yes, but the floating-point result differs at canonical angles. tand guarantees exact values at multiples of 45 and 180, and infinite values at +/-90.

Does tand support arrays?

Yes. Scalars, vectors, matrices, and N-D tensors are all handled element-wise; the shape of the input is preserved.

Trigonometry

acos · acosh · asin · asinh · atan · atan2 · atanh · cos · cosd · cosh · deg2rad · rad2deg · sin · sind · sinh · tan · tanh

Elementwise

abs · angle · complex · conj · double · exp · expm1 · factorial · gamma · hypot · imag · ldivide · log · log10 · log1p · log2 · minus · nextpow2 · plus · pow2 · power · rdivide · real · sign · single · sqrt · times

Reduction

all · any · cummax · cummin · cumprod · cumsum · cumtrapz · diff · gradient · max · mean · median · min · nnz · prod · std · sum · trapz · var

Signal

blackman · butter · conv · conv2 · deconv · filter · hamming · hann · sawtooth · sinc · square

Rounding

ceil · fix · floor · mod · rem · round

Factor

chol · eig · lu · qr · svd

Solve

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

Fft

fft · fft2 · fftshift · ifft · ifft2 · ifftshift

Interpolation

interp1 · interp2 · pchip · ppval · spline

Ode

ode15s · ode23 · ode45

Open-source implementation

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