Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "math/base/special/acoth/docs/types/index.d"

Index

Functions

Functions

Export assignment acoth

  • acoth(x: number): number
  • Computes the inverse hyperbolic cotangent of a number.

    Parameters

    • x: number

      input value

    Returns number

    inverse hyperbolic cotangent

    Example

    var v = acoth( 2.0 );
    // returns ~0.5493

    Example

    var v = acoth( 0.0 );
    // returns NaN

    Example

    var v = acoth( 0.5 );
    // returns NaN

    Example

    var v = acoth( 1.0 );
    // returns Infinity

    Example

    var v = acoth( NaN );
    // returns NaN