Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stdlib-js/math-base-special

Standard library base special math functions.
https://github.com/stdlib-js/math-base-special

javascript lib library math mathematics node node-js nodejs standard stdlib

Last synced: about 3 hours ago
JSON representation

Standard library base special math functions.

Awesome Lists containing this project

README

        


About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.


The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.


When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.


To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

# Special Functions

[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]

> Base (i.e., lower-level) special math functions.

## Installation

```bash
npm install @stdlib/math-base-special
```

Alternatively,

- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).

The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.

To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.

## Usage

```javascript
var special = require( '@stdlib/math-base-special' );
```

#### special

Namespace for "base" (i.e., lower-level) special math functions.

```javascript
var fcns = special;
// returns {...}
```

### Exponential & Logarithmic Functions

- [`exp( x )`][@stdlib/math/base/special/exp]: natural exponential function.
- [`exp10( x )`][@stdlib/math/base/special/exp10]: base `10` exponential function.
- [`exp2( x )`][@stdlib/math/base/special/exp2]: base `2` exponential function.
- [`expit( x )`][@stdlib/math/base/special/expit]: compute the standard logistic function.
- [`expm1( x )`][@stdlib/math/base/special/expm1]: compute `exp(x) - 1`.
- [`expm1rel( x )`][@stdlib/math/base/special/expm1rel]: compute the relative error exponential.
- [`kernelLog1p( f )`][@stdlib/math/base/special/kernel-log1p]: compute `log(1+f) - f` for `1+f` in `~[sqrt(2)/2, sqrt(2)]`.
- [`ln( x )`][@stdlib/math/base/special/ln]: evaluate the natural logarithm of a double-precision floating-point number.
- [`log( x, b )`][@stdlib/math/base/special/log]: compute the base `b` logarithm of a double-precision floating-point number.
- [`log10( x )`][@stdlib/math/base/special/log10]: evaluate the common logarithm.
- [`log1mexp( x )`][@stdlib/math/base/special/log1mexp]: evaluates the natural logarithm of `1-exp(-|x|)`.
- [`log1p( x )`][@stdlib/math/base/special/log1p]: evaluate the natural logarithm of `1+x`.
- [`log1pexp( x )`][@stdlib/math/base/special/log1pexp]: evaluates the natural logarithm of `1+exp(x)`.
- [`log1pmx( x )`][@stdlib/math/base/special/log1pmx]: evaluate `ln(1+x) - x`.
- [`log2( x )`][@stdlib/math/base/special/log2]: evaluate the binary logarithm.
- [`logaddexp( x, y )`][@stdlib/math/base/special/logaddexp]: evaluates the natural logarithm of `exp(x) + exp(y)`.
- [`pow( base, exponent )`][@stdlib/math/base/special/pow]: exponential function.
- [`powm1( b, x )`][@stdlib/math/base/special/powm1]: evaluate `bˣ - 1`.
- [`xlog1py( x, y )`][@stdlib/math/base/special/xlog1py]: compute `x * ln(y+1)` so that the result is `0` if `x = 0`.
- [`xlogy( x, y )`][@stdlib/math/base/special/xlogy]: compute `x * ln(y)` so that the result is `0` if `x = 0`.

### Trigonometric Functions

- [`acos( x )`][@stdlib/math/base/special/acos]: compute the arccosine of a double-precision floating-point number.
- [`acosd( x )`][@stdlib/math/base/special/acosd]: compute the arccosine in degrees of a double-precision floating-point number.
- [`acosf( x )`][@stdlib/math/base/special/acosf]: compute the arccosine of a single-precision floating-point number.
- [`acosh( x )`][@stdlib/math/base/special/acosh]: compute the hyperbolic arccosine of a double-precision floating-point number.
- [`acovercos( x )`][@stdlib/math/base/special/acovercos]: compute the inverse coversed cosine.
- [`acoversin( x )`][@stdlib/math/base/special/acoversin]: compute the inverse coversed sine.
- [`ahavercos( x )`][@stdlib/math/base/special/ahavercos]: compute the inverse half-value versed cosine.
- [`ahaversin( x )`][@stdlib/math/base/special/ahaversin]: compute the inverse half-value versed sine.
- [`asin( x )`][@stdlib/math/base/special/asin]: compute the arcsine of a double-precision floating-point number.
- [`asind( x )`][@stdlib/math/base/special/asind]: compute the arcsine (in degrees) of a double-precision floating-point number.
- [`asindf( x )`][@stdlib/math/base/special/asindf]: compute the arcsine (in degrees) of a single-precision floating-point number.
- [`asinf( x )`][@stdlib/math/base/special/asinf]: compute the arcsine of a single-precision floating-point number.
- [`asinh( x )`][@stdlib/math/base/special/asinh]: compute the hyperbolic arcsine of a double-precision floating-point number.
- [`atan( x )`][@stdlib/math/base/special/atan]: compute the arctangent of a double-precision floating-point number.
- [`atan2( y, x )`][@stdlib/math/base/special/atan2]: compute the angle in the plane (in radians) between the positive x-axis and the ray from `(0,0)` to the point `(x,y)`.
- [`atand( x )`][@stdlib/math/base/special/atand]: compute the arctangent in degrees of a double-precision floating-point number.
- [`atanf( x )`][@stdlib/math/base/special/atanf]: compute the arctangent of a single-precision floating-point number.
- [`atanh( x )`][@stdlib/math/base/special/atanh]: compute the hyperbolic arctangent of a double-precision floating-point number.
- [`avercos( x )`][@stdlib/math/base/special/avercos]: compute the inverse versed cosine.
- [`aversin( x )`][@stdlib/math/base/special/aversin]: compute the inverse versed sine.
- [`cos( x )`][@stdlib/math/base/special/cos]: compute the cosine of a number.
- [`cosd( x )`][@stdlib/math/base/special/cosd]: computes the cosine of an angle measured in degrees.
- [`cosh( x )`][@stdlib/math/base/special/cosh]: compute the hyperbolic cosine of a double-precision floating-point number.
- [`cosm1( x )`][@stdlib/math/base/special/cosm1]: compute `cos(x) - 1`.
- [`cospi( x )`][@stdlib/math/base/special/cospi]: compute the cosine of a number times π.
- [`covercos( x )`][@stdlib/math/base/special/covercos]: compute the coversed cosine.
- [`coversin( x )`][@stdlib/math/base/special/coversin]: compute the coversed sine.
- [`hacovercos( x )`][@stdlib/math/base/special/hacovercos]: compute the half-value coversed cosine.
- [`hacoversin( x )`][@stdlib/math/base/special/hacoversin]: compute the half-value coversed sine.
- [`havercos( x )`][@stdlib/math/base/special/havercos]: compute the half-value versed cosine.
- [`haversin( x )`][@stdlib/math/base/special/haversin]: compute the half-value versed sine.
- [`risingFactorial( x, n )`][@stdlib/math/base/special/rising-factorial]: compute the rising factorial.
- [`sin( x )`][@stdlib/math/base/special/sin]: compute the sine of a number.
- [`sinc( x )`][@stdlib/math/base/special/sinc]: compute the cardinal sine of a number.
- [`sincos( x )`][@stdlib/math/base/special/sincos]: simultaneously compute the sine and cosine of a number.
- [`sincospi()`][@stdlib/math/base/special/sincospi]: simultaneously compute the sine and cosine of a number times π.
- [`sinh( x )`][@stdlib/math/base/special/sinh]: compute the hyperbolic sine of a double-precision floating-point number.
- [`sinpi( x )`][@stdlib/math/base/special/sinpi]: compute the sine of a number times π.
- [`tan( x )`][@stdlib/math/base/special/tan]: evaluate the tangent of a number.
- [`tand( x )`][@stdlib/math/base/special/tand]: computes the tangent of an angle measured in degrees.
- [`tanh( x )`][@stdlib/math/base/special/tanh]: compute the hyperbolic tangent of a double-precision floating-point number.
- [`vercos( x )`][@stdlib/math/base/special/vercos]: compute the versed cosine.
- [`versin( x )`][@stdlib/math/base/special/versin]: compute the versed sine.

### Bessel Functions

- [`besselj0( x )`][@stdlib/math/base/special/besselj0]: compute the Bessel function of the first kind of order zero.
- [`besselj1( x )`][@stdlib/math/base/special/besselj1]: compute the Bessel function of the first kind of order one.
- [`bessely0( x )`][@stdlib/math/base/special/bessely0]: compute the Bessel function of the second kind of order zero.
- [`bessely1( x )`][@stdlib/math/base/special/bessely1]: compute the Bessel function of the second kind of order one.

### Absolute Value and Rounding Functions

- [`abs( x )`][@stdlib/math/base/special/abs]: compute the absolute value of a double-precision floating-point number.
- [`abs2( x )`][@stdlib/math/base/special/abs2]: compute the squared absolute value of a double-precision floating-point number.
- [`abs2f( x )`][@stdlib/math/base/special/abs2f]: compute the squared absolute value of a single-precision floating-point number.
- [`absf( x )`][@stdlib/math/base/special/absf]: compute the absolute value of a single-precision floating-point number.
- [`cabs( z )`][@stdlib/math/base/special/cabs]: compute the absolute value of a double-precision complex floating-point number.
- [`cabs2( z )`][@stdlib/math/base/special/cabs2]: compute the squared absolute value of a double-precision complex floating-point number.
- [`cabs2f( z )`][@stdlib/math/base/special/cabs2f]: compute the squared absolute value of a single-precision complex floating-point number.
- [`cabsf( z )`][@stdlib/math/base/special/cabsf]: compute the absolute value of a single-precision complex floating-point number.
- [`cceil( z )`][@stdlib/math/base/special/cceil]: round a double-precision complex floating-point number toward positive infinity.
- [`cceilf( z )`][@stdlib/math/base/special/cceilf]: round a single-precision complex floating-point number toward positive infinity.
- [`cceiln( z, n )`][@stdlib/math/base/special/cceiln]: round each component of a double-precision complex floating-point number to the nearest multiple of `10^n` toward positive infinity.
- [`ceil( x )`][@stdlib/math/base/special/ceil]: round a double-precision floating-point number toward positive infinity.
- [`ceil10( x )`][@stdlib/math/base/special/ceil10]: round a numeric value to the nearest power of 10 toward positive infinity.
- [`ceil2( x )`][@stdlib/math/base/special/ceil2]: round a numeric value to the nearest power of two toward positive infinity.
- [`ceilb( x, n, b )`][@stdlib/math/base/special/ceilb]: round a numeric value to the nearest multiple of b^n toward positive infinity.
- [`ceilf( x )`][@stdlib/math/base/special/ceilf]: round a single-precision floating-point number toward positive infinity.
- [`ceiln( x, n )`][@stdlib/math/base/special/ceiln]: round a numeric value to the nearest multiple of 10^n toward positive infinity.
- [`ceilsd( x, n, b )`][@stdlib/math/base/special/ceilsd]: round a numeric value to the nearest number toward positive infinity with N significant figures.
- [`cfloor( z )`][@stdlib/math/base/special/cfloor]: round a double-precision complex floating-point number toward negative infinity.
- [`cfloorn( z, n )`][@stdlib/math/base/special/cfloorn]: round each component of a double-precision complex floating-point number to the nearest multiple of `10^n` toward negative infinity.
- [`clamp( v, min, max )`][@stdlib/math/base/special/clamp]: restrict a double-precision floating-point number to a specified range.
- [`clampf( v, min, max )`][@stdlib/math/base/special/clampf]: restrict a single-precision floating-point number to a specified range.
- [`cround( z )`][@stdlib/math/base/special/cround]: round each component of a double-precision complex floating-point number to the nearest integer.
- [`croundn( z, n )`][@stdlib/math/base/special/croundn]: round each component of a double-precision complex floating-point number to the nearest multiple of `10^n`.
- [`csignum( z )`][@stdlib/math/base/special/csignum]: evaluate the signum function of a double-precision complex floating-point number.
- [`floor( x )`][@stdlib/math/base/special/floor]: round a double-precision floating-point number toward negative infinity.
- [`floor10( x )`][@stdlib/math/base/special/floor10]: round a numeric value to the nearest power of 10 toward negative infinity.
- [`floor2( x )`][@stdlib/math/base/special/floor2]: round a numeric value to the nearest power of two toward negative infinity.
- [`floorb( x, n, b )`][@stdlib/math/base/special/floorb]: round a numeric value to the nearest multiple of b^n toward negative infinity.
- [`floorf( x )`][@stdlib/math/base/special/floorf]: round a single-precision floating-point numeric value toward negative infinity.
- [`floorn( x, n )`][@stdlib/math/base/special/floorn]: round a double-precision floating-point number to the nearest multiple of 10^n toward negative infinity.
- [`floorsd( x, n, b )`][@stdlib/math/base/special/floorsd]: round a numeric value to the nearest number toward negative infinity with N significant figures.
- [`labs( x )`][@stdlib/math/base/special/labs]: compute an absolute value of a signed 32-bit integer.
- [`maxabs( x, y )`][@stdlib/math/base/special/maxabs]: return the maximum absolute value.
- [`maxabsn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/maxabsn]: return the maximum absolute value.
- [`minabs( x, y )`][@stdlib/math/base/special/minabs]: return the minimum absolute value.
- [`minabsn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/minabsn]: return the minimum absolute value.
- [`minmaxabs( x, y )`][@stdlib/math/base/special/minmaxabs]: return the minimum and maximum absolute values.
- [`minmaxabsn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/minmaxabsn]: return the minimum and maximum absolute values.
- [`round( x )`][@stdlib/math/base/special/round]: round a numeric value to the nearest integer.
- [`round10( x )`][@stdlib/math/base/special/round10]: round a numeric value to the nearest power of 10 on a linear scale.
- [`round2( x )`][@stdlib/math/base/special/round2]: round a numeric value to the nearest power of two on a linear scale.
- [`roundb( x, n, b )`][@stdlib/math/base/special/roundb]: round a numeric value to the nearest multiple of b^n on a linear scale.
- [`roundn( x, n )`][@stdlib/math/base/special/roundn]: round a double-precision floating-point number to the nearest multiple of 10^n.
- [`roundsd( x, n[, b] )`][@stdlib/math/base/special/roundsd]: round a numeric value to the nearest number with `n` significant figures.
- [`signum( x )`][@stdlib/math/base/special/signum]: signum function.
- [`signumf( x )`][@stdlib/math/base/special/signumf]: signum function.
- [`trunc( x )`][@stdlib/math/base/special/trunc]: round a double-precision floating-point number toward zero.
- [`trunc10( x )`][@stdlib/math/base/special/trunc10]: round a numeric value to the nearest power of 10 toward zero.
- [`trunc2( x )`][@stdlib/math/base/special/trunc2]: round a numeric value to the nearest power of two toward zero.
- [`truncb( x, n, b )`][@stdlib/math/base/special/truncb]: round a numeric value to the nearest multiple of b^n toward zero.
- [`truncf( x )`][@stdlib/math/base/special/truncf]: round a single-precision floating-point number toward zero.
- [`truncn( x, n )`][@stdlib/math/base/special/truncn]: round a numeric value to the nearest multiple of 10^n toward zero.
- [`truncsd( x, n, b )`][@stdlib/math/base/special/truncsd]: round a numeric value to the nearest number toward zero with `n` significant figures.

### Other Special Functions

- [`acot( x )`][@stdlib/math/base/special/acot]: compute the inverse cotangent of a double-precision floating-point number.
- [`acotd( x )`][@stdlib/math/base/special/acotd]: compute the arccotangent in degrees of a double-precision floating-point number.
- [`acotf( x )`][@stdlib/math/base/special/acotf]: compute the inverse cotangent of a single-precision floating-point number.
- [`acoth( x )`][@stdlib/math/base/special/acoth]: compute the inverse hyperbolic cotangent of a double-precision floating-point number.
- [`acsc( x )`][@stdlib/math/base/special/acsc]: compute the arccosecant of a number.
- [`acscd( x )`][@stdlib/math/base/special/acscd]: compute the arccosecant in degrees of a double-precision floating-point number.
- [`acscdf( x )`][@stdlib/math/base/special/acscdf]: compute the arccosecant (in degrees) of a single-precision floating-point number.
- [`acscf( x )`][@stdlib/math/base/special/acscf]: compute the arccosecant of a single-precision floating-point number.
- [`acsch( x )`][@stdlib/math/base/special/acsch]: compute the hyperbolic arccosecant of a number.
- [`asec( x )`][@stdlib/math/base/special/asec]: compute the inverse (arc) secant of a number.
- [`asecd( x )`][@stdlib/math/base/special/asecd]: compute the arcsecant (in degrees) of a double-precision floating-point number.
- [`asecdf( x )`][@stdlib/math/base/special/asecdf]: compute the arcsecant (in degrees) of a single-precision floating-point number.
- [`asecf( x )`][@stdlib/math/base/special/asecf]: compute the inverse (arc) secant of a single-precision floating-point number.
- [`asech( x )`][@stdlib/math/base/special/asech]: compute the hyperbolic arcsecant of a number.
- [`bernoulli( n )`][@stdlib/math/base/special/bernoulli]: compute the nth Bernoulli number.
- [`beta( x, y )`][@stdlib/math/base/special/beta]: beta function.
- [`betainc( x, a, b[, regularized[, upper]] )`][@stdlib/math/base/special/betainc]: incomplete beta function.
- [`betaincinv( p, a, b[, upper] )`][@stdlib/math/base/special/betaincinv]: inverse of the incomplete beta function.
- [`betaln( x, y )`][@stdlib/math/base/special/betaln]: natural logarithm of the beta function.
- [`binet( x )`][@stdlib/math/base/special/binet]: evaluate Binet's formula extended to real numbers.
- [`binomcoef( n, k )`][@stdlib/math/base/special/binomcoef]: compute the binomial coefficient.
- [`binomcoefln( n, k )`][@stdlib/math/base/special/binomcoefln]: compute the natural logarithm of the binomial coefficient.
- [`boxcox( x, lambda )`][@stdlib/math/base/special/boxcox]: compute a one-parameter Box-Cox transformation.
- [`boxcox1p( x, lambda )`][@stdlib/math/base/special/boxcox1p]: compute a one-parameter Box-Cox transformation of `1+x`.
- [`boxcox1pinv( y, lambda )`][@stdlib/math/base/special/boxcox1pinv]: compute the inverse of a one-parameter Box-Cox transformation for `1+x`.
- [`boxcoxinv( y, lambda )`][@stdlib/math/base/special/boxcoxinv]: compute the inverse of a one-parameter Box-Cox transformation.
- [`cbrt( x )`][@stdlib/math/base/special/cbrt]: compute the cube root of a double-precision floating-point number.
- [`cbrtf( x )`][@stdlib/math/base/special/cbrtf]: compute the cube root of a single-precision floating-point number.
- [`ccis( z )`][@stdlib/math/base/special/ccis]: evaluate the cis function for a double-precision complex floating-point number.
- [`cexp( z )`][@stdlib/math/base/special/cexp]: evaluate the exponential function for a double-precision complex floating-point number.
- [`cflipsign( z, y )`][@stdlib/math/base/special/cflipsign]: return a double-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.
- [`cflipsignf( z, y )`][@stdlib/math/base/special/cflipsignf]: return a single-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.
- [`cidentity( z )`][@stdlib/math/base/special/cidentity]: evaluate the identity function of a double-precision complex floating-point number.
- [`cidentityf( z )`][@stdlib/math/base/special/cidentityf]: evaluate the identity function of a single-precision complex floating-point number.
- [`cinv( z )`][@stdlib/math/base/special/cinv]: compute the inverse of a double-precision complex floating-point number.
- [`copysign( x, y )`][@stdlib/math/base/special/copysign]: return a double-precision floating-point number with the magnitude of `x` and the sign of `y`.
- [`copysignf( x, y )`][@stdlib/math/base/special/copysignf]: return a single-precision floating-point number with the magnitude of `x` and the sign of `y`.
- [`cot( x )`][@stdlib/math/base/special/cot]: evaluate the cotangent of a number.
- [`cotd( x )`][@stdlib/math/base/special/cotd]: compute the cotangent of an angle measured in degrees.
- [`coth( x )`][@stdlib/math/base/special/coth]: compute the hyperbolic cotangent of a number.
- [`cphase( z )`][@stdlib/math/base/special/cphase]: compute the argument of a double-precision complex floating-point number in radians.
- [`cpolar( z )`][@stdlib/math/base/special/cpolar]: compute the absolute value and phase of a double-precision complex floating-point number.
- [`csc( x )`][@stdlib/math/base/special/csc]: evaluate the cosecant of a number.
- [`cscd( x )`][@stdlib/math/base/special/cscd]: compute the cosecant of a degree.
- [`csch( x )`][@stdlib/math/base/special/csch]: compute the hyperbolic cosecant of a number.
- [`deg2rad( x )`][@stdlib/math/base/special/deg2rad]: convert an angle from degrees to radians.
- [`deg2radf( x )`][@stdlib/math/base/special/deg2radf]: convert an angle from degrees to radians (single-precision).
- [`digamma( x )`][@stdlib/math/base/special/digamma]: digamma function.
- [`diracDelta( x )`][@stdlib/math/base/special/dirac-delta]: evaluate the Dirac delta function.
- [`eta( s )`][@stdlib/math/base/special/dirichlet-eta]: dirichlet eta function.
- [`ellipe( m )`][@stdlib/math/base/special/ellipe]: compute the complete elliptic integral of the second kind.
- [`ellipj( u, m )`][@stdlib/math/base/special/ellipj]: compute the Jacobi elliptic functions sn, cn, and dn.
- [`ellipk( m )`][@stdlib/math/base/special/ellipk]: compute the complete elliptic integral of the first kind.
- [`erf( x )`][@stdlib/math/base/special/erf]: error function.
- [`erfc( x )`][@stdlib/math/base/special/erfc]: complementary error function.
- [`erfcinv( x )`][@stdlib/math/base/special/erfcinv]: inverse complementary error function.
- [`erfcx( x )`][@stdlib/math/base/special/erfcx]: scaled complementary error function.
- [`erfinv( x )`][@stdlib/math/base/special/erfinv]: inverse error function.
- [`factorial( x )`][@stdlib/math/base/special/factorial]: factorial function.
- [`factorial2( n )`][@stdlib/math/base/special/factorial2]: double factorial function.
- [`factorialln( x )`][@stdlib/math/base/special/factorialln]: natural logarithm of the factorial function.
- [`fallingFactorial( x, n )`][@stdlib/math/base/special/falling-factorial]: compute the falling factorial.
- [`fibonacciIndex( F )`][@stdlib/math/base/special/fibonacci-index]: compute the Fibonacci number index.
- [`fibonacci( n )`][@stdlib/math/base/special/fibonacci]: compute the nth Fibonacci number.
- [`flipsign( x, y )`][@stdlib/math/base/special/flipsign]: return a double-precision floating-point number with the magnitude of `x` and the sign of `x*y`.
- [`flipsignf( x, y )`][@stdlib/math/base/special/flipsignf]: return a single-precision floating-point number with the magnitude of `x` and the sign of `x*y`.
- [`fresnel( x )`][@stdlib/math/base/special/fresnel]: compute the Fresnel integrals S(x) and C(x).
- [`fresnelc( x )`][@stdlib/math/base/special/fresnelc]: compute the Fresnel integral C(x).
- [`fresnels( x )`][@stdlib/math/base/special/fresnels]: compute the Fresnel integral S(x).
- [`frexp( x )`][@stdlib/math/base/special/frexp]: split a double-precision floating-point number into a normalized fraction and an integer power of two.
- [`gamma( x )`][@stdlib/math/base/special/gamma]: gamma function.
- [`gamma1pm1( x )`][@stdlib/math/base/special/gamma1pm1]: compute `gamma(x+1) - 1`.
- [`gammainc( x, s[, regularized[, upper ]] )`][@stdlib/math/base/special/gammainc]: incomplete gamma function.
- [`gammaincinv( p, s[, upper ] )`][@stdlib/math/base/special/gammaincinv]: inverse of incomplete gamma function.
- [`gammaln( x )`][@stdlib/math/base/special/gammaln]: natural logarithm of the gamma function.
- [`gammasgn( x )`][@stdlib/math/base/special/gammasgn]: sign of the gamma function.
- [`gcd( a, b )`][@stdlib/math/base/special/gcd]: compute the greatest common divisor (gcd).
- [`heaviside( x[, continuity] )`][@stdlib/math/base/special/heaviside]: evaluate the Heaviside function.
- [`hypot( x, y )`][@stdlib/math/base/special/hypot]: compute the hypotenuse avoiding overflow and underflow.
- [`hypotf( x, y )`][@stdlib/math/base/special/hypotf]: compute the hypotenuse avoiding overflow and underflow (single-precision).
- [`identity( x )`][@stdlib/math/base/special/identity]: evaluate the identity function of a double-precision floating-point number.
- [`identityf( x )`][@stdlib/math/base/special/identityf]: evaluate the identity function of a single-precision floating-point number.
- [`inv( x )`][@stdlib/math/base/special/inv]: compute the multiplicative inverse of a double-precision floating-point number.
- [`invf( x )`][@stdlib/math/base/special/invf]: compute the multiplicative inverse of a single-precision floating-point number.
- [`kroneckerDelta( i, j )`][@stdlib/math/base/special/kronecker-delta]: evaluate the Kronecker delta.
- [`kroneckerDeltaf( i, j )`][@stdlib/math/base/special/kronecker-deltaf]: evaluate the Kronecker delta (single-precision).
- [`lcm( a, b )`][@stdlib/math/base/special/lcm]: compute the least common multiple (lcm).
- [`ldexp( frac, exp )`][@stdlib/math/base/special/ldexp]: multiply a double-precision floating-point number by an integer power of two.
- [`lucas( n )`][@stdlib/math/base/special/lucas]: compute the nth Lucas number.
- [`max( x, y )`][@stdlib/math/base/special/max]: return the maximum value.
- [`maxn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/maxn]: return the maximum value.
- [`min( x, y )`][@stdlib/math/base/special/min]: return the minimum value.
- [`minmax( x, y )`][@stdlib/math/base/special/minmax]: return the minimum and maximum values.
- [`minmaxn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/minmaxn]: return the minimum and maximum values.
- [`minn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/minn]: return the minimum value.
- [`modf( x )`][@stdlib/math/base/special/modf]: decompose a double-precision floating-point number into integral and fractional parts.
- [`negafibonacci( n )`][@stdlib/math/base/special/negafibonacci]: compute the nth negaFibonacci number.
- [`negalucas( n )`][@stdlib/math/base/special/negalucas]: compute the nth negaLucas number.
- [`nonfibonacci( n )`][@stdlib/math/base/special/nonfibonacci]: compute the nth non-Fibonacci number.
- [`pdiff( x, y )`][@stdlib/math/base/special/pdiff]: return the positive difference between `x` and `y`.
- [`pdifff( x, y )`][@stdlib/math/base/special/pdifff]: return the positive difference between `x` and `y`.
- [`polygamma( n, x )`][@stdlib/math/base/special/polygamma]: polygamma function.
- [`rad2deg( x )`][@stdlib/math/base/special/rad2deg]: convert an angle from radians to degrees.
- [`rad2degf( x )`][@stdlib/math/base/special/rad2degf]: convert an angle from radians to degrees (single-precision).
- [`ramp( x )`][@stdlib/math/base/special/ramp]: evaluate the ramp function.
- [`rampf( x )`][@stdlib/math/base/special/rampf]: evaluate the ramp function.
- [`rcbrt( x )`][@stdlib/math/base/special/rcbrt]: compute the reciprocal of the principal cube root of a double-precision floating-point number.
- [`rcbrtf( x )`][@stdlib/math/base/special/rcbrtf]: compute the reciprocal of the principal cube root of a single-precision floating-point number.
- [`zeta( s )`][@stdlib/math/base/special/riemann-zeta]: riemann zeta function.
- [`rsqrt( x )`][@stdlib/math/base/special/rsqrt]: compute the reciprocal of the principal square root of a double-precision floating-point number.
- [`rsqrtf( x )`][@stdlib/math/base/special/rsqrtf]: compute the reciprocal of the principal square root of a single-precision floating-point number.
- [`secd( x )`][@stdlib/math/base/special/secd]: compute the secant of an angle measured in degrees.
- [`sici( x )`][@stdlib/math/base/special/sici]: compute the sine and cosine integrals.
- [`spence( x )`][@stdlib/math/base/special/spence]: spence's function, also known as the dilogarithm.
- [`sqrt( x )`][@stdlib/math/base/special/sqrt]: compute the principal square root of a double-precision floating-point number.
- [`sqrt1pm1( x )`][@stdlib/math/base/special/sqrt1pm1]: compute `sqrt( 1 + x ) - 1`.
- [`sqrtf( x )`][@stdlib/math/base/special/sqrtf]: compute the principal square root of a single-precision floating-point number.
- [`sqrtpi( x )`][@stdlib/math/base/special/sqrtpi]: compute the principal square root of the product of π and a positive number.
- [`tribonacci( n )`][@stdlib/math/base/special/tribonacci]: compute the nth Tribonacci number.
- [`trigamma( x )`][@stdlib/math/base/special/trigamma]: trigamma function.
- [`wrap( v, min, max )`][@stdlib/math/base/special/wrap]: wrap a value on the half-open interval `[min,max)`.

Fast algorithms of various special functions, which trade accuracy for increased speed, are available in the following sub-namespace:

- [`fast`][@stdlib/math/base/special/fast]: fast math special functions.

Finally, the namespace exports the following kernel functions, which are mainly used internally. Beware that they may only be applicable for input values inside a certain number range and/or may not work as expected if not all arguments satisfy the parameter requirements.

- [`kernelBetainc( x, a, b, regularized, upper )`][@stdlib/math/base/special/kernel-betainc]: incomplete beta function and its first derivative.
- [`kernelBetaincinv( a, b, p, q )`][@stdlib/math/base/special/kernel-betaincinv]: inverse of the lower incomplete beta function.
- [`kernelCos( x, y )`][@stdlib/math/base/special/kernel-cos]: compute the cosine of a double-precision floating-point number on `[-π/4, π/4]`.
- [`kernelSin( x, y )`][@stdlib/math/base/special/kernel-sin]: compute the sine of a double-precision floating-point number on `[-π/4, π/4]`.
- [`kernelTan( x, y, k )`][@stdlib/math/base/special/kernel-tan]: compute the tangent of a double-precision floating-point number on `[-π/4, π/4]`.
- [`rempio2( x, y )`][@stdlib/math/base/special/rempio2]: compute `x - nπ/2 = r`.

## Examples

```javascript
var objectKeys = require( '@stdlib/utils-keys' );
var special = require( '@stdlib/math-base-special' );

console.log( objectKeys( special ) );
```

* * *

## Notice

This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].

#### Community

[![Chat][chat-image]][chat-url]

---

## License

See [LICENSE][stdlib-license].

## Copyright

Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].

[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special.svg
[npm-url]: https://npmjs.org/package/@stdlib/math-base-special

[test-image]: https://github.com/stdlib-js/math-base-special/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/math-base-special/actions/workflows/test.yml?query=branch:main

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special?branch=main

[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im

[stdlib]: https://github.com/stdlib-js/stdlib

[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors

[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules

[deno-url]: https://github.com/stdlib-js/math-base-special/tree/deno
[deno-readme]: https://github.com/stdlib-js/math-base-special/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/math-base-special/tree/umd
[umd-readme]: https://github.com/stdlib-js/math-base-special/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/math-base-special/tree/esm
[esm-readme]: https://github.com/stdlib-js/math-base-special/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/math-base-special/blob/main/branches.md

[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special/main/LICENSE

[@stdlib/math/base/special/kernel-betainc]: https://github.com/stdlib-js/math-base-special-kernel-betainc

[@stdlib/math/base/special/kernel-betaincinv]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv

[@stdlib/math/base/special/kernel-cos]: https://github.com/stdlib-js/math-base-special-kernel-cos

[@stdlib/math/base/special/kernel-sin]: https://github.com/stdlib-js/math-base-special-kernel-sin

[@stdlib/math/base/special/kernel-tan]: https://github.com/stdlib-js/math-base-special-kernel-tan

[@stdlib/math/base/special/rempio2]: https://github.com/stdlib-js/math-base-special-rempio2

[@stdlib/math/base/special/fast]: https://github.com/stdlib-js/math-base-special-fast

[@stdlib/math/base/special/acot]: https://github.com/stdlib-js/math-base-special-acot

[@stdlib/math/base/special/acotd]: https://github.com/stdlib-js/math-base-special-acotd

[@stdlib/math/base/special/acotf]: https://github.com/stdlib-js/math-base-special-acotf

[@stdlib/math/base/special/acoth]: https://github.com/stdlib-js/math-base-special-acoth

[@stdlib/math/base/special/acsc]: https://github.com/stdlib-js/math-base-special-acsc

[@stdlib/math/base/special/acscd]: https://github.com/stdlib-js/math-base-special-acscd

[@stdlib/math/base/special/acscdf]: https://github.com/stdlib-js/math-base-special-acscdf

[@stdlib/math/base/special/acscf]: https://github.com/stdlib-js/math-base-special-acscf

[@stdlib/math/base/special/acsch]: https://github.com/stdlib-js/math-base-special-acsch

[@stdlib/math/base/special/asec]: https://github.com/stdlib-js/math-base-special-asec

[@stdlib/math/base/special/asecd]: https://github.com/stdlib-js/math-base-special-asecd

[@stdlib/math/base/special/asecdf]: https://github.com/stdlib-js/math-base-special-asecdf

[@stdlib/math/base/special/asecf]: https://github.com/stdlib-js/math-base-special-asecf

[@stdlib/math/base/special/asech]: https://github.com/stdlib-js/math-base-special-asech

[@stdlib/math/base/special/bernoulli]: https://github.com/stdlib-js/math-base-special-bernoulli

[@stdlib/math/base/special/beta]: https://github.com/stdlib-js/math-base-special-beta

[@stdlib/math/base/special/betainc]: https://github.com/stdlib-js/math-base-special-betainc

[@stdlib/math/base/special/betaincinv]: https://github.com/stdlib-js/math-base-special-betaincinv

[@stdlib/math/base/special/betaln]: https://github.com/stdlib-js/math-base-special-betaln

[@stdlib/math/base/special/binet]: https://github.com/stdlib-js/math-base-special-binet

[@stdlib/math/base/special/binomcoef]: https://github.com/stdlib-js/math-base-special-binomcoef

[@stdlib/math/base/special/binomcoefln]: https://github.com/stdlib-js/math-base-special-binomcoefln

[@stdlib/math/base/special/boxcox]: https://github.com/stdlib-js/math-base-special-boxcox

[@stdlib/math/base/special/boxcox1p]: https://github.com/stdlib-js/math-base-special-boxcox1p

[@stdlib/math/base/special/boxcox1pinv]: https://github.com/stdlib-js/math-base-special-boxcox1pinv

[@stdlib/math/base/special/boxcoxinv]: https://github.com/stdlib-js/math-base-special-boxcoxinv

[@stdlib/math/base/special/cbrt]: https://github.com/stdlib-js/math-base-special-cbrt

[@stdlib/math/base/special/cbrtf]: https://github.com/stdlib-js/math-base-special-cbrtf

[@stdlib/math/base/special/ccis]: https://github.com/stdlib-js/math-base-special-ccis

[@stdlib/math/base/special/cexp]: https://github.com/stdlib-js/math-base-special-cexp

[@stdlib/math/base/special/cflipsign]: https://github.com/stdlib-js/math-base-special-cflipsign

[@stdlib/math/base/special/cflipsignf]: https://github.com/stdlib-js/math-base-special-cflipsignf

[@stdlib/math/base/special/cidentity]: https://github.com/stdlib-js/math-base-special-cidentity

[@stdlib/math/base/special/cidentityf]: https://github.com/stdlib-js/math-base-special-cidentityf

[@stdlib/math/base/special/cinv]: https://github.com/stdlib-js/math-base-special-cinv

[@stdlib/math/base/special/copysign]: https://github.com/stdlib-js/math-base-special-copysign

[@stdlib/math/base/special/copysignf]: https://github.com/stdlib-js/math-base-special-copysignf

[@stdlib/math/base/special/cot]: https://github.com/stdlib-js/math-base-special-cot

[@stdlib/math/base/special/cotd]: https://github.com/stdlib-js/math-base-special-cotd

[@stdlib/math/base/special/coth]: https://github.com/stdlib-js/math-base-special-coth

[@stdlib/math/base/special/cphase]: https://github.com/stdlib-js/math-base-special-cphase

[@stdlib/math/base/special/cpolar]: https://github.com/stdlib-js/math-base-special-cpolar

[@stdlib/math/base/special/csc]: https://github.com/stdlib-js/math-base-special-csc

[@stdlib/math/base/special/cscd]: https://github.com/stdlib-js/math-base-special-cscd

[@stdlib/math/base/special/csch]: https://github.com/stdlib-js/math-base-special-csch

[@stdlib/math/base/special/deg2rad]: https://github.com/stdlib-js/math-base-special-deg2rad

[@stdlib/math/base/special/deg2radf]: https://github.com/stdlib-js/math-base-special-deg2radf

[@stdlib/math/base/special/digamma]: https://github.com/stdlib-js/math-base-special-digamma

[@stdlib/math/base/special/dirac-delta]: https://github.com/stdlib-js/math-base-special-dirac-delta

[@stdlib/math/base/special/dirichlet-eta]: https://github.com/stdlib-js/math-base-special-dirichlet-eta

[@stdlib/math/base/special/ellipe]: https://github.com/stdlib-js/math-base-special-ellipe

[@stdlib/math/base/special/ellipj]: https://github.com/stdlib-js/math-base-special-ellipj

[@stdlib/math/base/special/ellipk]: https://github.com/stdlib-js/math-base-special-ellipk

[@stdlib/math/base/special/erf]: https://github.com/stdlib-js/math-base-special-erf

[@stdlib/math/base/special/erfc]: https://github.com/stdlib-js/math-base-special-erfc

[@stdlib/math/base/special/erfcinv]: https://github.com/stdlib-js/math-base-special-erfcinv

[@stdlib/math/base/special/erfcx]: https://github.com/stdlib-js/math-base-special-erfcx

[@stdlib/math/base/special/erfinv]: https://github.com/stdlib-js/math-base-special-erfinv

[@stdlib/math/base/special/factorial]: https://github.com/stdlib-js/math-base-special-factorial

[@stdlib/math/base/special/factorial2]: https://github.com/stdlib-js/math-base-special-factorial2

[@stdlib/math/base/special/factorialln]: https://github.com/stdlib-js/math-base-special-factorialln

[@stdlib/math/base/special/falling-factorial]: https://github.com/stdlib-js/math-base-special-falling-factorial

[@stdlib/math/base/special/fibonacci-index]: https://github.com/stdlib-js/math-base-special-fibonacci-index

[@stdlib/math/base/special/fibonacci]: https://github.com/stdlib-js/math-base-special-fibonacci

[@stdlib/math/base/special/flipsign]: https://github.com/stdlib-js/math-base-special-flipsign

[@stdlib/math/base/special/flipsignf]: https://github.com/stdlib-js/math-base-special-flipsignf

[@stdlib/math/base/special/fresnel]: https://github.com/stdlib-js/math-base-special-fresnel

[@stdlib/math/base/special/fresnelc]: https://github.com/stdlib-js/math-base-special-fresnelc

[@stdlib/math/base/special/fresnels]: https://github.com/stdlib-js/math-base-special-fresnels

[@stdlib/math/base/special/frexp]: https://github.com/stdlib-js/math-base-special-frexp

[@stdlib/math/base/special/gamma]: https://github.com/stdlib-js/math-base-special-gamma

[@stdlib/math/base/special/gamma1pm1]: https://github.com/stdlib-js/math-base-special-gamma1pm1

[@stdlib/math/base/special/gammainc]: https://github.com/stdlib-js/math-base-special-gammainc

[@stdlib/math/base/special/gammaincinv]: https://github.com/stdlib-js/math-base-special-gammaincinv

[@stdlib/math/base/special/gammaln]: https://github.com/stdlib-js/math-base-special-gammaln

[@stdlib/math/base/special/gammasgn]: https://github.com/stdlib-js/math-base-special-gammasgn

[@stdlib/math/base/special/gcd]: https://github.com/stdlib-js/math-base-special-gcd

[@stdlib/math/base/special/heaviside]: https://github.com/stdlib-js/math-base-special-heaviside

[@stdlib/math/base/special/hypot]: https://github.com/stdlib-js/math-base-special-hypot

[@stdlib/math/base/special/hypotf]: https://github.com/stdlib-js/math-base-special-hypotf

[@stdlib/math/base/special/identity]: https://github.com/stdlib-js/math-base-special-identity

[@stdlib/math/base/special/identityf]: https://github.com/stdlib-js/math-base-special-identityf

[@stdlib/math/base/special/inv]: https://github.com/stdlib-js/math-base-special-inv

[@stdlib/math/base/special/invf]: https://github.com/stdlib-js/math-base-special-invf

[@stdlib/math/base/special/kronecker-delta]: https://github.com/stdlib-js/math-base-special-kronecker-delta

[@stdlib/math/base/special/kronecker-deltaf]: https://github.com/stdlib-js/math-base-special-kronecker-deltaf

[@stdlib/math/base/special/lcm]: https://github.com/stdlib-js/math-base-special-lcm

[@stdlib/math/base/special/ldexp]: https://github.com/stdlib-js/math-base-special-ldexp

[@stdlib/math/base/special/lucas]: https://github.com/stdlib-js/math-base-special-lucas

[@stdlib/math/base/special/max]: https://github.com/stdlib-js/math-base-special-max

[@stdlib/math/base/special/maxn]: https://github.com/stdlib-js/math-base-special-maxn

[@stdlib/math/base/special/min]: https://github.com/stdlib-js/math-base-special-min

[@stdlib/math/base/special/minmax]: https://github.com/stdlib-js/math-base-special-minmax

[@stdlib/math/base/special/minmaxn]: https://github.com/stdlib-js/math-base-special-minmaxn

[@stdlib/math/base/special/minn]: https://github.com/stdlib-js/math-base-special-minn

[@stdlib/math/base/special/modf]: https://github.com/stdlib-js/math-base-special-modf

[@stdlib/math/base/special/negafibonacci]: https://github.com/stdlib-js/math-base-special-negafibonacci

[@stdlib/math/base/special/negalucas]: https://github.com/stdlib-js/math-base-special-negalucas

[@stdlib/math/base/special/nonfibonacci]: https://github.com/stdlib-js/math-base-special-nonfibonacci

[@stdlib/math/base/special/pdiff]: https://github.com/stdlib-js/math-base-special-pdiff

[@stdlib/math/base/special/pdifff]: https://github.com/stdlib-js/math-base-special-pdifff

[@stdlib/math/base/special/polygamma]: https://github.com/stdlib-js/math-base-special-polygamma

[@stdlib/math/base/special/rad2deg]: https://github.com/stdlib-js/math-base-special-rad2deg

[@stdlib/math/base/special/rad2degf]: https://github.com/stdlib-js/math-base-special-rad2degf

[@stdlib/math/base/special/ramp]: https://github.com/stdlib-js/math-base-special-ramp

[@stdlib/math/base/special/rampf]: https://github.com/stdlib-js/math-base-special-rampf

[@stdlib/math/base/special/rcbrt]: https://github.com/stdlib-js/math-base-special-rcbrt

[@stdlib/math/base/special/rcbrtf]: https://github.com/stdlib-js/math-base-special-rcbrtf

[@stdlib/math/base/special/riemann-zeta]: https://github.com/stdlib-js/math-base-special-riemann-zeta

[@stdlib/math/base/special/rsqrt]: https://github.com/stdlib-js/math-base-special-rsqrt

[@stdlib/math/base/special/rsqrtf]: https://github.com/stdlib-js/math-base-special-rsqrtf

[@stdlib/math/base/special/secd]: https://github.com/stdlib-js/math-base-special-secd

[@stdlib/math/base/special/sici]: https://github.com/stdlib-js/math-base-special-sici

[@stdlib/math/base/special/spence]: https://github.com/stdlib-js/math-base-special-spence

[@stdlib/math/base/special/sqrt]: https://github.com/stdlib-js/math-base-special-sqrt

[@stdlib/math/base/special/sqrt1pm1]: https://github.com/stdlib-js/math-base-special-sqrt1pm1

[@stdlib/math/base/special/sqrtf]: https://github.com/stdlib-js/math-base-special-sqrtf

[@stdlib/math/base/special/sqrtpi]: https://github.com/stdlib-js/math-base-special-sqrtpi

[@stdlib/math/base/special/tribonacci]: https://github.com/stdlib-js/math-base-special-tribonacci

[@stdlib/math/base/special/trigamma]: https://github.com/stdlib-js/math-base-special-trigamma

[@stdlib/math/base/special/wrap]: https://github.com/stdlib-js/math-base-special-wrap

[@stdlib/math/base/special/abs]: https://github.com/stdlib-js/math-base-special-abs

[@stdlib/math/base/special/abs2]: https://github.com/stdlib-js/math-base-special-abs2

[@stdlib/math/base/special/abs2f]: https://github.com/stdlib-js/math-base-special-abs2f

[@stdlib/math/base/special/absf]: https://github.com/stdlib-js/math-base-special-absf

[@stdlib/math/base/special/cabs]: https://github.com/stdlib-js/math-base-special-cabs

[@stdlib/math/base/special/cabs2]: https://github.com/stdlib-js/math-base-special-cabs2

[@stdlib/math/base/special/cabs2f]: https://github.com/stdlib-js/math-base-special-cabs2f

[@stdlib/math/base/special/cabsf]: https://github.com/stdlib-js/math-base-special-cabsf

[@stdlib/math/base/special/cceil]: https://github.com/stdlib-js/math-base-special-cceil

[@stdlib/math/base/special/cceilf]: https://github.com/stdlib-js/math-base-special-cceilf

[@stdlib/math/base/special/cceiln]: https://github.com/stdlib-js/math-base-special-cceiln

[@stdlib/math/base/special/ceil]: https://github.com/stdlib-js/math-base-special-ceil

[@stdlib/math/base/special/ceil10]: https://github.com/stdlib-js/math-base-special-ceil10

[@stdlib/math/base/special/ceil2]: https://github.com/stdlib-js/math-base-special-ceil2

[@stdlib/math/base/special/ceilb]: https://github.com/stdlib-js/math-base-special-ceilb

[@stdlib/math/base/special/ceilf]: https://github.com/stdlib-js/math-base-special-ceilf

[@stdlib/math/base/special/ceiln]: https://github.com/stdlib-js/math-base-special-ceiln

[@stdlib/math/base/special/ceilsd]: https://github.com/stdlib-js/math-base-special-ceilsd

[@stdlib/math/base/special/cfloor]: https://github.com/stdlib-js/math-base-special-cfloor

[@stdlib/math/base/special/cfloorn]: https://github.com/stdlib-js/math-base-special-cfloorn

[@stdlib/math/base/special/clamp]: https://github.com/stdlib-js/math-base-special-clamp

[@stdlib/math/base/special/clampf]: https://github.com/stdlib-js/math-base-special-clampf

[@stdlib/math/base/special/cround]: https://github.com/stdlib-js/math-base-special-cround

[@stdlib/math/base/special/croundn]: https://github.com/stdlib-js/math-base-special-croundn

[@stdlib/math/base/special/csignum]: https://github.com/stdlib-js/math-base-special-csignum

[@stdlib/math/base/special/floor]: https://github.com/stdlib-js/math-base-special-floor

[@stdlib/math/base/special/floor10]: https://github.com/stdlib-js/math-base-special-floor10

[@stdlib/math/base/special/floor2]: https://github.com/stdlib-js/math-base-special-floor2

[@stdlib/math/base/special/floorb]: https://github.com/stdlib-js/math-base-special-floorb

[@stdlib/math/base/special/floorf]: https://github.com/stdlib-js/math-base-special-floorf

[@stdlib/math/base/special/floorn]: https://github.com/stdlib-js/math-base-special-floorn

[@stdlib/math/base/special/floorsd]: https://github.com/stdlib-js/math-base-special-floorsd

[@stdlib/math/base/special/labs]: https://github.com/stdlib-js/math-base-special-labs

[@stdlib/math/base/special/maxabs]: https://github.com/stdlib-js/math-base-special-maxabs

[@stdlib/math/base/special/maxabsn]: https://github.com/stdlib-js/math-base-special-maxabsn

[@stdlib/math/base/special/minabs]: https://github.com/stdlib-js/math-base-special-minabs

[@stdlib/math/base/special/minabsn]: https://github.com/stdlib-js/math-base-special-minabsn

[@stdlib/math/base/special/minmaxabs]: https://github.com/stdlib-js/math-base-special-minmaxabs

[@stdlib/math/base/special/minmaxabsn]: https://github.com/stdlib-js/math-base-special-minmaxabsn

[@stdlib/math/base/special/round]: https://github.com/stdlib-js/math-base-special-round

[@stdlib/math/base/special/round10]: https://github.com/stdlib-js/math-base-special-round10

[@stdlib/math/base/special/round2]: https://github.com/stdlib-js/math-base-special-round2

[@stdlib/math/base/special/roundb]: https://github.com/stdlib-js/math-base-special-roundb

[@stdlib/math/base/special/roundn]: https://github.com/stdlib-js/math-base-special-roundn

[@stdlib/math/base/special/roundsd]: https://github.com/stdlib-js/math-base-special-roundsd

[@stdlib/math/base/special/signum]: https://github.com/stdlib-js/math-base-special-signum

[@stdlib/math/base/special/signumf]: https://github.com/stdlib-js/math-base-special-signumf

[@stdlib/math/base/special/trunc]: https://github.com/stdlib-js/math-base-special-trunc

[@stdlib/math/base/special/trunc10]: https://github.com/stdlib-js/math-base-special-trunc10

[@stdlib/math/base/special/trunc2]: https://github.com/stdlib-js/math-base-special-trunc2

[@stdlib/math/base/special/truncb]: https://github.com/stdlib-js/math-base-special-truncb

[@stdlib/math/base/special/truncf]: https://github.com/stdlib-js/math-base-special-truncf

[@stdlib/math/base/special/truncn]: https://github.com/stdlib-js/math-base-special-truncn

[@stdlib/math/base/special/truncsd]: https://github.com/stdlib-js/math-base-special-truncsd

[@stdlib/math/base/special/besselj0]: https://github.com/stdlib-js/math-base-special-besselj0

[@stdlib/math/base/special/besselj1]: https://github.com/stdlib-js/math-base-special-besselj1

[@stdlib/math/base/special/bessely0]: https://github.com/stdlib-js/math-base-special-bessely0

[@stdlib/math/base/special/bessely1]: https://github.com/stdlib-js/math-base-special-bessely1

[@stdlib/math/base/special/acos]: https://github.com/stdlib-js/math-base-special-acos

[@stdlib/math/base/special/acosd]: https://github.com/stdlib-js/math-base-special-acosd

[@stdlib/math/base/special/acosf]: https://github.com/stdlib-js/math-base-special-acosf

[@stdlib/math/base/special/acosh]: https://github.com/stdlib-js/math-base-special-acosh

[@stdlib/math/base/special/acovercos]: https://github.com/stdlib-js/math-base-special-acovercos

[@stdlib/math/base/special/acoversin]: https://github.com/stdlib-js/math-base-special-acoversin

[@stdlib/math/base/special/ahavercos]: https://github.com/stdlib-js/math-base-special-ahavercos

[@stdlib/math/base/special/ahaversin]: https://github.com/stdlib-js/math-base-special-ahaversin

[@stdlib/math/base/special/asin]: https://github.com/stdlib-js/math-base-special-asin

[@stdlib/math/base/special/asind]: https://github.com/stdlib-js/math-base-special-asind

[@stdlib/math/base/special/asindf]: https://github.com/stdlib-js/math-base-special-asindf

[@stdlib/math/base/special/asinf]: https://github.com/stdlib-js/math-base-special-asinf

[@stdlib/math/base/special/asinh]: https://github.com/stdlib-js/math-base-special-asinh

[@stdlib/math/base/special/atan]: https://github.com/stdlib-js/math-base-special-atan

[@stdlib/math/base/special/atan2]: https://github.com/stdlib-js/math-base-special-atan2

[@stdlib/math/base/special/atand]: https://github.com/stdlib-js/math-base-special-atand

[@stdlib/math/base/special/atanf]: https://github.com/stdlib-js/math-base-special-atanf

[@stdlib/math/base/special/atanh]: https://github.com/stdlib-js/math-base-special-atanh

[@stdlib/math/base/special/avercos]: https://github.com/stdlib-js/math-base-special-avercos

[@stdlib/math/base/special/aversin]: https://github.com/stdlib-js/math-base-special-aversin

[@stdlib/math/base/special/cos]: https://github.com/stdlib-js/math-base-special-cos

[@stdlib/math/base/special/cosd]: https://github.com/stdlib-js/math-base-special-cosd

[@stdlib/math/base/special/cosh]: https://github.com/stdlib-js/math-base-special-cosh

[@stdlib/math/base/special/cosm1]: https://github.com/stdlib-js/math-base-special-cosm1

[@stdlib/math/base/special/cospi]: https://github.com/stdlib-js/math-base-special-cospi

[@stdlib/math/base/special/covercos]: https://github.com/stdlib-js/math-base-special-covercos

[@stdlib/math/base/special/coversin]: https://github.com/stdlib-js/math-base-special-coversin

[@stdlib/math/base/special/hacovercos]: https://github.com/stdlib-js/math-base-special-hacovercos

[@stdlib/math/base/special/hacoversin]: https://github.com/stdlib-js/math-base-special-hacoversin

[@stdlib/math/base/special/havercos]: https://github.com/stdlib-js/math-base-special-havercos

[@stdlib/math/base/special/haversin]: https://github.com/stdlib-js/math-base-special-haversin

[@stdlib/math/base/special/rising-factorial]: https://github.com/stdlib-js/math-base-special-rising-factorial

[@stdlib/math/base/special/sin]: https://github.com/stdlib-js/math-base-special-sin

[@stdlib/math/base/special/sinc]: https://github.com/stdlib-js/math-base-special-sinc

[@stdlib/math/base/special/sincos]: https://github.com/stdlib-js/math-base-special-sincos

[@stdlib/math/base/special/sincospi]: https://github.com/stdlib-js/math-base-special-sincospi

[@stdlib/math/base/special/sinh]: https://github.com/stdlib-js/math-base-special-sinh

[@stdlib/math/base/special/sinpi]: https://github.com/stdlib-js/math-base-special-sinpi

[@stdlib/math/base/special/tan]: https://github.com/stdlib-js/math-base-special-tan

[@stdlib/math/base/special/tand]: https://github.com/stdlib-js/math-base-special-tand

[@stdlib/math/base/special/tanh]: https://github.com/stdlib-js/math-base-special-tanh

[@stdlib/math/base/special/vercos]: https://github.com/stdlib-js/math-base-special-vercos

[@stdlib/math/base/special/versin]: https://github.com/stdlib-js/math-base-special-versin

[@stdlib/math/base/special/exp]: https://github.com/stdlib-js/math-base-special-exp

[@stdlib/math/base/special/exp10]: https://github.com/stdlib-js/math-base-special-exp10

[@stdlib/math/base/special/exp2]: https://github.com/stdlib-js/math-base-special-exp2

[@stdlib/math/base/special/expit]: https://github.com/stdlib-js/math-base-special-expit

[@stdlib/math/base/special/expm1]: https://github.com/stdlib-js/math-base-special-expm1

[@stdlib/math/base/special/expm1rel]: https://github.com/stdlib-js/math-base-special-expm1rel

[@stdlib/math/base/special/kernel-log1p]: https://github.com/stdlib-js/math-base-special-kernel-log1p

[@stdlib/math/base/special/ln]: https://github.com/stdlib-js/math-base-special-ln

[@stdlib/math/base/special/log]: https://github.com/stdlib-js/math-base-special-log

[@stdlib/math/base/special/log10]: https://github.com/stdlib-js/math-base-special-log10

[@stdlib/math/base/special/log1mexp]: https://github.com/stdlib-js/math-base-special-log1mexp

[@stdlib/math/base/special/log1p]: https://github.com/stdlib-js/math-base-special-log1p

[@stdlib/math/base/special/log1pexp]: https://github.com/stdlib-js/math-base-special-log1pexp

[@stdlib/math/base/special/log1pmx]: https://github.com/stdlib-js/math-base-special-log1pmx

[@stdlib/math/base/special/log2]: https://github.com/stdlib-js/math-base-special-log2

[@stdlib/math/base/special/logaddexp]: https://github.com/stdlib-js/math-base-special-logaddexp

[@stdlib/math/base/special/pow]: https://github.com/stdlib-js/math-base-special-pow

[@stdlib/math/base/special/powm1]: https://github.com/stdlib-js/math-base-special-powm1

[@stdlib/math/base/special/xlog1py]: https://github.com/stdlib-js/math-base-special-xlog1py

[@stdlib/math/base/special/xlogy]: https://github.com/stdlib-js/math-base-special-xlogy