time-to-botec/js/node_modules/@stdlib/math/base
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
assert feat: add the node modules 2022-12-03 12:44:49 +00:00
docs/types feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
napi feat: add the node modules 2022-12-03 12:44:49 +00:00
ops feat: add the node modules 2022-12-03 12:44:49 +00:00
special feat: add the node modules 2022-12-03 12:44:49 +00:00
tools feat: add the node modules 2022-12-03 12:44:49 +00:00
utils feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Base Math

Standard library math base implementations.

Usage

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

math

Standard library base math.

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

The namespace contains the following sub-namespaces:

  • assert: standard library basic mathematical assertion utilities.
  • ops: standard library base math operators.
  • special: standard library base special math functions.
  • tools: standard library basic mathematical tools.
  • utils: standard library basic mathematical utilities.

Examples

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

console.log( objectKeys( ns ) );