@stdlib/math-base-special

Standard library base special math functions.

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

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.6%) to scientific vocabulary

Keywords

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

Keywords from Contributors

iterator tokenizer accumulator name capitals assert reduced normal partial bifurcate
Last synced: 6 months ago · JSON representation ·

Repository

Standard library base special math functions.

Basic Info
Statistics
  • Stars: 3
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
javascript lib library math mathematics node node-js nodejs standard stdlib
Created almost 5 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security Notice

README.md

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 Build Status Coverage Status <!-- dependencies -->

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. - [`acosdf( x )`][@stdlib/math/base/special/acosdf]: compute the arccosine (in degrees) of a single-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 an angle measured in radians. - [`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 each component of a double-precision complex floating-point number toward positive infinity. - [`cceilf( z )`][@stdlib/math/base/special/cceilf]: round each component of 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 double-precision floating-point number to the nearest value 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. - [`acotdf( x )`][@stdlib/math/base/special/acotdf]: compute the arccotangent in degrees of a single-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`. - [`cinv( z )`][@stdlib/math/base/special/cinv]: compute the inverse of a double-precision complex floating-point number. - [`cinvf( z )`][@stdlib/math/base/special/cinvf]: compute the inverse of a single-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). - [`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 to 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-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 47
Last Year
  • Push event: 47

Committers

Last synced: about 2 years ago

All Time
  • Total Commits: 132
  • Total Committers: 2
  • Avg Commits per committer: 66.0
  • Development Distribution Score (DDS): 0.03
Past Year
  • Commits: 30
  • Committers: 1
  • Avg Commits per committer: 30.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 128
Philipp Burckhardt p****t@o****m 4
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 8 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 16 last-month
  • Total dependent packages: 3
  • Total dependent repositories: 1
  • Total versions: 9
  • Total maintainers: 4
npmjs.org: @stdlib/math-base-special

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

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.3.0
    published over 1 year ago
  • Versions: 9
  • Dependent Packages: 3
  • Dependent Repositories: 1
  • Downloads: 16 Last month
Rankings
Dependent packages count: 5.9%
Dependent repos count: 10.3%
Average: 13.8%
Stargazers count: 14.5%
Forks count: 15.4%
Downloads: 22.6%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 6 months ago

Dependencies

package.json npm
  • @stdlib/array-base-incrspace ^0.0.x development
  • @stdlib/array-base-linspace ^0.0.x development
  • @stdlib/array-base-zeros ^0.0.x development
  • @stdlib/array-float32 ^0.0.x development
  • @stdlib/array-float64 ^0.0.x development
  • @stdlib/array-uint32 ^0.0.x development
  • @stdlib/assert-is-array ^0.0.x development
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/assert-is-integer ^0.0.x development
  • @stdlib/assert-is-little-endian ^0.0.x development
  • @stdlib/assert-is-nan ^0.0.x development
  • @stdlib/assert-is-nan-array ^0.0.x development
  • @stdlib/assert-is-number ^0.0.x development
  • @stdlib/assert-is-number-array ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/complex-float32 ^0.0.x development
  • @stdlib/complex-float64 ^0.0.x development
  • @stdlib/complex-imag ^0.0.x development
  • @stdlib/complex-real ^0.0.x development
  • @stdlib/constants-float32-eps ^0.0.x development
  • @stdlib/constants-float32-max ^0.0.x development
  • @stdlib/constants-float32-ninf ^0.0.x development
  • @stdlib/constants-float32-pinf ^0.0.x development
  • @stdlib/constants-float32-smallest-normal ^0.0.x development
  • @stdlib/constants-float64-e ^0.0.x development
  • @stdlib/constants-float64-eps ^0.0.x development
  • @stdlib/constants-float64-eulergamma ^0.0.x development
  • @stdlib/constants-float64-exponent-bias ^0.0.x development
  • @stdlib/constants-float64-fourth-pi ^0.0.x development
  • @stdlib/constants-float64-gamma-lanczos-g ^0.0.x development
  • @stdlib/constants-float64-half-ln-two ^0.0.x development
  • @stdlib/constants-float64-half-pi ^0.0.x development
  • @stdlib/constants-float64-high-word-exponent-mask ^0.0.x development
  • @stdlib/constants-float64-high-word-significand-mask ^0.0.x development
  • @stdlib/constants-float64-ln-pi ^0.0.x development
  • @stdlib/constants-float64-ln-sqrt-two-pi ^0.0.x development
  • @stdlib/constants-float64-ln-two ^0.0.x development
  • @stdlib/constants-float64-max ^0.0.x development
  • @stdlib/constants-float64-max-base10-exponent ^0.0.x development
  • @stdlib/constants-float64-max-base2-exponent ^0.0.x development
  • @stdlib/constants-float64-max-base2-exponent-subnormal ^0.0.x development
  • @stdlib/constants-float64-max-ln ^0.0.x development
  • @stdlib/constants-float64-max-safe-integer ^0.0.x development
  • @stdlib/constants-float64-max-safe-nth-fibonacci ^0.0.x development
  • @stdlib/constants-float64-max-safe-nth-lucas ^0.0.x development
  • @stdlib/constants-float64-min-base10-exponent ^0.0.x development
  • @stdlib/constants-float64-min-base10-exponent-subnormal ^0.0.x development
  • @stdlib/constants-float64-min-base2-exponent ^0.0.x development
  • @stdlib/constants-float64-min-base2-exponent-subnormal ^0.0.x development
  • @stdlib/constants-float64-min-ln ^0.0.x development
  • @stdlib/constants-float64-ninf ^0.0.x development
  • @stdlib/constants-float64-phi ^0.0.x development
  • @stdlib/constants-float64-pi ^0.0.x development
  • @stdlib/constants-float64-pi-squared ^0.0.x development
  • @stdlib/constants-float64-pinf ^0.0.x development
  • @stdlib/constants-float64-smallest-normal ^0.0.x development
  • @stdlib/constants-float64-smallest-subnormal ^0.0.x development
  • @stdlib/constants-float64-sqrt-eps ^0.0.x development
  • @stdlib/constants-float64-sqrt-pi ^0.0.x development
  • @stdlib/constants-float64-sqrt-two ^0.0.x development
  • @stdlib/constants-float64-sqrt-two-pi ^0.0.x development
  • @stdlib/constants-float64-two-pi ^0.0.x development
  • @stdlib/constants-int32-max ^0.0.x development
  • @stdlib/constants-int32-min ^0.0.x development
  • @stdlib/fs-write-file ^0.0.x development
  • @stdlib/math-base-assert-is-finite ^0.0.x development
  • @stdlib/math-base-assert-is-infinite ^0.0.x development
  • @stdlib/math-base-assert-is-infinitef ^0.0.x development
  • @stdlib/math-base-assert-is-integer ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/math-base-assert-is-nanf ^0.0.x development
  • @stdlib/math-base-assert-is-negative-integer ^0.0.x development
  • @stdlib/math-base-assert-is-negative-zero ^0.0.x development
  • @stdlib/math-base-assert-is-negative-zerof ^0.0.x development
  • @stdlib/math-base-assert-is-nonnegative-integer ^0.0.x development
  • @stdlib/math-base-assert-is-odd ^0.0.x development
  • @stdlib/math-base-assert-is-positive-zero ^0.0.x development
  • @stdlib/math-base-assert-is-positive-zerof ^0.0.x development
  • @stdlib/math-base-assert-is-probability ^0.0.x development
  • @stdlib/math-base-special-fast-abs ^0.0.x development
  • @stdlib/math-base-special-fast-acosh ^0.0.x development
  • @stdlib/math-base-special-fast-alpha-max-plus-beta-min ^0.0.x development
  • @stdlib/math-base-special-fast-asinh ^0.0.x development
  • @stdlib/math-base-special-fast-atanh ^0.0.x development
  • @stdlib/math-base-special-fast-hypot ^0.0.x development
  • @stdlib/math-base-special-fast-max ^0.0.x development
  • @stdlib/math-base-special-fast-min ^0.0.x development
  • @stdlib/math-base-special-fast-pow-int ^0.0.x development
  • @stdlib/math-base-special-fast-uint32-log2 ^0.0.x development
  • @stdlib/math-base-special-fast-uint32-sqrt ^0.0.x development
  • @stdlib/math-base-tools-continued-fraction ^0.0.x development
  • @stdlib/math-base-tools-evalpoly ^0.0.x development
  • @stdlib/math-base-tools-evalpoly-compile ^0.0.x development
  • @stdlib/math-base-tools-evalrational-compile ^0.0.x development
  • @stdlib/math-base-tools-sum-series ^0.0.x development
  • @stdlib/number-float32-base-from-word ^0.0.x development
  • @stdlib/number-float32-base-to-word ^0.0.x development
  • @stdlib/number-float64-base-exponent ^0.0.x development
  • @stdlib/number-float64-base-from-words ^0.0.x development
  • @stdlib/number-float64-base-get-high-word ^0.0.x development
  • @stdlib/number-float64-base-get-low-word ^0.0.x development
  • @stdlib/number-float64-base-normalize ^0.0.x development
  • @stdlib/number-float64-base-set-high-word ^0.0.x development
  • @stdlib/number-float64-base-set-low-word ^0.0.x development
  • @stdlib/number-float64-base-signbit ^0.0.x development
  • @stdlib/number-float64-base-to-float32 ^0.0.x development
  • @stdlib/number-float64-base-to-words ^0.0.x development
  • @stdlib/number-uint32-base-to-int32 ^0.0.x development
  • @stdlib/random-base-binomial ^0.0.x development
  • @stdlib/random-base-discrete-uniform ^0.0.x development
  • @stdlib/random-base-minstd-shuffle ^0.0.x development
  • @stdlib/random-base-randu ^0.0.x development
  • @stdlib/random-base-uniform ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.0.x development
  • @stdlib/utils-keys ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/math-base-special-abs ^0.0.x
  • @stdlib/math-base-special-abs2 ^0.0.x
  • @stdlib/math-base-special-abs2f ^0.0.x
  • @stdlib/math-base-special-absf ^0.0.x
  • @stdlib/math-base-special-acos ^0.0.x
  • @stdlib/math-base-special-acosh ^0.0.x
  • @stdlib/math-base-special-acot ^0.0.x
  • @stdlib/math-base-special-acoth ^0.0.x
  • @stdlib/math-base-special-acovercos ^0.0.x
  • @stdlib/math-base-special-acoversin ^0.0.x
  • @stdlib/math-base-special-acsc ^0.0.x
  • @stdlib/math-base-special-acsch ^0.0.x
  • @stdlib/math-base-special-ahavercos ^0.0.x
  • @stdlib/math-base-special-ahaversin ^0.0.x
  • @stdlib/math-base-special-asech ^0.0.x
  • @stdlib/math-base-special-asin ^0.0.x
  • @stdlib/math-base-special-asinh ^0.0.x
  • @stdlib/math-base-special-atan ^0.0.x
  • @stdlib/math-base-special-atan2 ^0.0.x
  • @stdlib/math-base-special-atanh ^0.0.x
  • @stdlib/math-base-special-avercos ^0.0.x
  • @stdlib/math-base-special-aversin ^0.0.x
  • @stdlib/math-base-special-bernoulli ^0.0.x
  • @stdlib/math-base-special-besselj0 ^0.0.x
  • @stdlib/math-base-special-besselj1 ^0.0.x
  • @stdlib/math-base-special-bessely0 ^0.0.x
  • @stdlib/math-base-special-bessely1 ^0.0.x
  • @stdlib/math-base-special-beta ^0.0.x
  • @stdlib/math-base-special-betainc ^0.0.x
  • @stdlib/math-base-special-betaincinv ^0.0.x
  • @stdlib/math-base-special-betaln ^0.0.x
  • @stdlib/math-base-special-binet ^0.0.x
  • @stdlib/math-base-special-binomcoef ^0.0.x
  • @stdlib/math-base-special-binomcoefln ^0.0.x
  • @stdlib/math-base-special-boxcox ^0.0.x
  • @stdlib/math-base-special-boxcox1p ^0.0.x
  • @stdlib/math-base-special-boxcox1pinv ^0.0.x
  • @stdlib/math-base-special-boxcoxinv ^0.0.x
  • @stdlib/math-base-special-cabs ^0.0.x
  • @stdlib/math-base-special-cabs2 ^0.0.x
  • @stdlib/math-base-special-cabs2f ^0.0.x
  • @stdlib/math-base-special-cabsf ^0.0.x
  • @stdlib/math-base-special-cbrt ^0.0.x
  • @stdlib/math-base-special-cbrtf ^0.0.x
  • @stdlib/math-base-special-cceil ^0.0.x
  • @stdlib/math-base-special-cceilf ^0.0.x
  • @stdlib/math-base-special-cceiln ^0.0.x
  • @stdlib/math-base-special-ccis ^0.0.x
  • @stdlib/math-base-special-ceil ^0.0.x
  • @stdlib/math-base-special-ceil10 ^0.0.x
  • @stdlib/math-base-special-ceil2 ^0.0.x
  • @stdlib/math-base-special-ceilb ^0.0.x
  • @stdlib/math-base-special-ceilf ^0.0.x
  • @stdlib/math-base-special-ceiln ^0.0.x
  • @stdlib/math-base-special-ceilsd ^0.0.x
  • @stdlib/math-base-special-cexp ^0.0.x
  • @stdlib/math-base-special-cflipsign ^0.0.x
  • @stdlib/math-base-special-cflipsignf ^0.0.x
  • @stdlib/math-base-special-cfloor ^0.0.x
  • @stdlib/math-base-special-cfloorn ^0.0.x
  • @stdlib/math-base-special-cidentity ^0.0.x
  • @stdlib/math-base-special-cidentityf ^0.0.x
  • @stdlib/math-base-special-cinv ^0.0.x
  • @stdlib/math-base-special-clamp ^0.0.x
  • @stdlib/math-base-special-clampf ^0.0.x
  • @stdlib/math-base-special-copysign ^0.0.x
  • @stdlib/math-base-special-copysignf ^0.0.x
  • @stdlib/math-base-special-cos ^0.0.x
  • @stdlib/math-base-special-cosh ^0.0.x
  • @stdlib/math-base-special-cosm1 ^0.0.x
  • @stdlib/math-base-special-cospi ^0.0.x
  • @stdlib/math-base-special-cot ^0.0.x
  • @stdlib/math-base-special-coth ^0.0.x
  • @stdlib/math-base-special-covercos ^0.0.x
  • @stdlib/math-base-special-coversin ^0.0.x
  • @stdlib/math-base-special-cphase ^0.0.x
  • @stdlib/math-base-special-cpolar ^0.0.x
  • @stdlib/math-base-special-cround ^0.0.x
  • @stdlib/math-base-special-croundn ^0.0.x
  • @stdlib/math-base-special-csch ^0.0.x
  • @stdlib/math-base-special-csignum ^0.0.x
  • @stdlib/math-base-special-deg2rad ^0.0.x
  • @stdlib/math-base-special-deg2radf ^0.0.x
  • @stdlib/math-base-special-digamma ^0.0.x
  • @stdlib/math-base-special-dirac-delta ^0.0.x
  • @stdlib/math-base-special-dirichlet-eta ^0.0.x
  • @stdlib/math-base-special-ellipe ^0.0.x
  • @stdlib/math-base-special-ellipk ^0.0.x
  • @stdlib/math-base-special-erf ^0.0.x
  • @stdlib/math-base-special-erfc ^0.0.x
  • @stdlib/math-base-special-erfcinv ^0.0.x
  • @stdlib/math-base-special-erfcx ^0.0.x
  • @stdlib/math-base-special-erfinv ^0.0.x
  • @stdlib/math-base-special-exp ^0.0.x
  • @stdlib/math-base-special-exp10 ^0.0.x
  • @stdlib/math-base-special-exp2 ^0.0.x
  • @stdlib/math-base-special-expit ^0.0.x
  • @stdlib/math-base-special-expm1 ^0.0.x
  • @stdlib/math-base-special-expm1rel ^0.0.x
  • @stdlib/math-base-special-factorial ^0.0.x
  • @stdlib/math-base-special-factorialln ^0.0.x
  • @stdlib/math-base-special-falling-factorial ^0.0.x
  • @stdlib/math-base-special-fast ^0.0.x
  • @stdlib/math-base-special-fibonacci ^0.0.x
  • @stdlib/math-base-special-fibonacci-index ^0.0.x
  • @stdlib/math-base-special-flipsign ^0.0.x
  • @stdlib/math-base-special-flipsignf ^0.0.x
  • @stdlib/math-base-special-floor ^0.0.x
  • @stdlib/math-base-special-floor10 ^0.0.x
  • @stdlib/math-base-special-floor2 ^0.0.x
  • @stdlib/math-base-special-floorb ^0.0.x
  • @stdlib/math-base-special-floorf ^0.0.x
  • @stdlib/math-base-special-floorn ^0.0.x
  • @stdlib/math-base-special-floorsd ^0.0.x
  • @stdlib/math-base-special-fresnel ^0.0.x
  • @stdlib/math-base-special-fresnelc ^0.0.x
  • @stdlib/math-base-special-fresnels ^0.0.x
  • @stdlib/math-base-special-frexp ^0.0.x
  • @stdlib/math-base-special-gamma ^0.0.x
  • @stdlib/math-base-special-gamma-delta-ratio ^0.0.x
  • @stdlib/math-base-special-gamma-lanczos-sum ^0.0.x
  • @stdlib/math-base-special-gamma-lanczos-sum-expg-scaled ^0.0.x
  • @stdlib/math-base-special-gamma1pm1 ^0.0.x
  • @stdlib/math-base-special-gammainc ^0.0.x
  • @stdlib/math-base-special-gammaincinv ^0.0.x
  • @stdlib/math-base-special-gammaln ^0.0.x
  • @stdlib/math-base-special-gcd ^0.0.x
  • @stdlib/math-base-special-hacovercos ^0.0.x
  • @stdlib/math-base-special-hacoversin ^0.0.x
  • @stdlib/math-base-special-havercos ^0.0.x
  • @stdlib/math-base-special-haversin ^0.0.x
  • @stdlib/math-base-special-heaviside ^0.0.x
  • @stdlib/math-base-special-hypot ^0.0.x
  • @stdlib/math-base-special-hypotf ^0.0.x
  • @stdlib/math-base-special-identity ^0.0.x
  • @stdlib/math-base-special-identityf ^0.0.x
  • @stdlib/math-base-special-inv ^0.0.x
  • @stdlib/math-base-special-invf ^0.0.x
  • @stdlib/math-base-special-kernel-betainc ^0.0.x
  • @stdlib/math-base-special-kernel-betaincinv ^0.0.x
  • @stdlib/math-base-special-kernel-cos ^0.0.x
  • @stdlib/math-base-special-kernel-sin ^0.0.x
  • @stdlib/math-base-special-kernel-tan ^0.0.x
  • @stdlib/math-base-special-kronecker-delta ^0.0.x
  • @stdlib/math-base-special-kronecker-deltaf ^0.0.x
  • @stdlib/math-base-special-labs ^0.0.x
  • @stdlib/math-base-special-lcm ^0.0.x
  • @stdlib/math-base-special-ldexp ^0.0.x
  • @stdlib/math-base-special-ln ^0.0.x
  • @stdlib/math-base-special-log ^0.0.x
  • @stdlib/math-base-special-log10 ^0.0.x
  • @stdlib/math-base-special-log1mexp ^0.0.x
  • @stdlib/math-base-special-log1p ^0.0.x
  • @stdlib/math-base-special-log1pexp ^0.0.x
  • @stdlib/math-base-special-log2 ^0.0.x
  • @stdlib/math-base-special-logaddexp ^0.0.x
  • @stdlib/math-base-special-logit ^0.0.x
  • @stdlib/math-base-special-lucas ^0.0.x
  • @stdlib/math-base-special-max ^0.0.x
  • @stdlib/math-base-special-maxabs ^0.0.x
  • @stdlib/math-base-special-min ^0.0.x
  • @stdlib/math-base-special-minabs ^0.0.x
  • @stdlib/math-base-special-minmax ^0.0.x
  • @stdlib/math-base-special-minmaxabs ^0.0.x
  • @stdlib/math-base-special-modf ^0.0.x
  • @stdlib/math-base-special-negafibonacci ^0.0.x
  • @stdlib/math-base-special-negalucas ^0.0.x
  • @stdlib/math-base-special-nonfibonacci ^0.0.x
  • @stdlib/math-base-special-pdiff ^0.0.x
  • @stdlib/math-base-special-pdifff ^0.0.x
  • @stdlib/math-base-special-polygamma ^0.0.x
  • @stdlib/math-base-special-pow ^0.0.x
  • @stdlib/math-base-special-powm1 ^0.0.x
  • @stdlib/math-base-special-rad2deg ^0.0.x
  • @stdlib/math-base-special-ramp ^0.0.x
  • @stdlib/math-base-special-rampf ^0.0.x
  • @stdlib/math-base-special-rcbrt ^0.0.x
  • @stdlib/math-base-special-rempio2 ^0.0.x
  • @stdlib/math-base-special-riemann-zeta ^0.0.x
  • @stdlib/math-base-special-rising-factorial ^0.0.x
  • @stdlib/math-base-special-round ^0.0.x
  • @stdlib/math-base-special-round10 ^0.0.x
  • @stdlib/math-base-special-round2 ^0.0.x
  • @stdlib/math-base-special-roundb ^0.0.x
  • @stdlib/math-base-special-roundn ^0.0.x
  • @stdlib/math-base-special-roundsd ^0.0.x
  • @stdlib/math-base-special-rsqrt ^0.0.x
  • @stdlib/math-base-special-rsqrtf ^0.0.x
  • @stdlib/math-base-special-sici ^0.0.x
  • @stdlib/math-base-special-signum ^0.0.x
  • @stdlib/math-base-special-signumf ^0.0.x
  • @stdlib/math-base-special-sin ^0.0.x
  • @stdlib/math-base-special-sinc ^0.0.x
  • @stdlib/math-base-special-sincos ^0.0.x
  • @stdlib/math-base-special-sincospi ^0.0.x
  • @stdlib/math-base-special-sinh ^0.0.x
  • @stdlib/math-base-special-sinpi ^0.0.x
  • @stdlib/math-base-special-spence ^0.0.x
  • @stdlib/math-base-special-sqrt ^0.0.x
  • @stdlib/math-base-special-sqrt1pm1 ^0.0.x
  • @stdlib/math-base-special-sqrtf ^0.0.x
  • @stdlib/math-base-special-tan ^0.0.x
  • @stdlib/math-base-special-tanh ^0.0.x
  • @stdlib/math-base-special-tribonacci ^0.0.x
  • @stdlib/math-base-special-trigamma ^0.0.x
  • @stdlib/math-base-special-trunc ^0.0.x
  • @stdlib/math-base-special-trunc10 ^0.0.x
  • @stdlib/math-base-special-trunc2 ^0.0.x
  • @stdlib/math-base-special-truncb ^0.0.x
  • @stdlib/math-base-special-truncf ^0.0.x
  • @stdlib/math-base-special-truncn ^0.0.x
  • @stdlib/math-base-special-truncsd ^0.0.x
  • @stdlib/math-base-special-vercos ^0.0.x
  • @stdlib/math-base-special-versin ^0.0.x
  • @stdlib/math-base-special-wrap ^0.0.x
  • @stdlib/math-base-special-xlog1py ^0.0.x
  • @stdlib/math-base-special-xlogy ^0.0.x
  • @stdlib/utils-define-read-only-property ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite