Skip to content

Latest commit

 

History

History
129 lines (68 loc) · 2.58 KB

README.md

File metadata and controls

129 lines (68 loc) · 2.58 KB

Special Functions

Special math functions.

Usage

var ns = require( '@stdlib/math/special' );

ns

Namespace containing special math functions.

var o = ns;
// returns {...}

Exponential & Logarithmic Functions

Trigonometric Functions

Bessel Functions

Absolute Value and Rounding Functions

Other Special Functions

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/math/special' );

console.log( objectKeys( ns ) );