JSPM

@stdlib/math-base-tools-normhermitepoly

0.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 21
  • Score
    100M100P100Q63103F
  • License Apache-2.0

Evaluate a normalized Hermite polynomial.

Package Exports

  • @stdlib/math-base-tools-normhermitepoly

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/math-base-tools-normhermitepoly) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Normalized Hermite Polynomial

NPM version Build Status Coverage Status dependencies

Evaluate a normalized Hermite polynomial.

The normalized (aka "probabilist") Hermite polynomials are given by

Equation for normalized Hermite polynomials.

Installation

npm install @stdlib/math-base-tools-normhermitepoly

Usage

var normhermitepoly = require( '@stdlib/math-base-tools-normhermitepoly' );

normhermitepoly( n, x )

Evaluates a normalized Hermite polynomial of degree n.

var v = normhermitepoly( 1, 1.0 );
// returns 1.0

v = normhermitepoly( 1, 0.5 );
// returns 0.5

v = normhermitepoly( 0, 0.5 );
// returns 1.0

v = normhermitepoly( 2, 0.5 );
// returns -0.75

v = normhermitepoly( -1, 0.5 );
// returns NaN

normhermitepoly.factory( n )

Returns a function for evaluating a normalized Hermite polynomial of degree n.

var polyval = normhermitepoly.factory( 2 );

var v = polyval( 0.5 );
// returns -0.75

Examples

var randu = require( '@stdlib/random-base-randu');
var normhermitepoly = require( '@stdlib/math-base-tools-normhermitepoly' );

var xx;
var yy;
var x;
var y;
var i;
var j;

for ( i = 0; i < 100; i++ ) {
    x = (randu()*100.0) - 50.0;
    for ( j = 1; j < 3; j++ ) {
        y = normhermitepoly( j, x );
        xx = x.toFixed(3);
        yy = y.toFixed(3);
        console.log( 'He_%d( %d ) = %d', j, xx, yy );
    }
}

Notice

This package is part of 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, see the main project repository.


License

See LICENSE.

Copyright © 2016-2021. The Stdlib Authors.