Skip to main content

latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
58%
Published
a month ago (0.0.0)
/** * Returns the hyperbolic sine of a complex number. * * ## Special cases * * | real | imaginary | `sinh()` | * | ---------------- | ---------------- | -------------- | * | ±0 | ±0 | (±0, ±0) | * | ±0 | ±Inf | (±0, NaN) | * | ±0 | NaN | (±0, NaN) | * | x (any finite x) | ±Inf | (NaN, NaN) | * | x (any finite x) | NaN | (NaN, NaN) | * | ±Inf | ±0 | (±Inf, ±0) | * | ±Inf | ±Inf | (±Inf, NaN) | * | ±Inf | NaN | (±Inf, NaN) | * | ±Inf | y (any finite y) | +Inf \* cis(y) | * | NaN | ±0 | (NaN, ±0) | * | NaN | NaN | (NaN, NaN) | * | NaN | ±Inf | (NaN, NaN) | * | NaN | y (any finite y) | (NaN, NaN) | * * _cis(y) = cos(y) + i sin(y)_ * * @example * ```ts * sinh(new complex(1, 1)); // 0.6349639 + 1.2984576i * ``` */ export function test_doc(): void { return; }