Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "math/iter/special/erfcinv/docs/types/index.d"

Index

Type aliases

Functions

Type aliases

Iterator

Iterator: Iter | IterableIterator

Functions

Export assignment iterErfcinv

  • Returns an iterator which iteratively evaluates the inverse complementary error function.

    Notes

    • The domain of inverse complementary error function is restricted to [0,2]. If an iterated value is outside of the domain, the returned iterator returns NaN.
    • If an environment supports Symbol.iterator and a provided iterator is iterable, the returned iterator is iterable.

    Parameters

    Returns Iterator

    iterator

    Example

    var uniform = require( `@stdlib/random/iter/uniform` );
    
    var iter = iterErfcinv( uniform( 0.0, 2.0 ) );
    
    var r = iter.next().value;
    // returns <number>
    
    r = iter.next().value;
    // returns <number>
    
    r = iter.next().value;
    // returns <number>
    
    // ...