FLOAT64_MAX_LN

Natural logarithm of the maximum double-precision floating-point number.

Usage

var FLOAT64_MAX_LN = require( '@stdlib/constants/float64/max-ln' );

FLOAT64_MAX_LN

Natural logarithm of the maximum double-precision floating-point number.

var bool = ( FLOAT64_MAX_LN === 709.782712893384 );
// returns true

Examples

var FLOAT64_MAX_LN = require( '@stdlib/constants/float64/max-ln' );

console.log( FLOAT64_MAX_LN );
// => 709.782712893384

C APIs

Usage

#include "stdlib/constants/float64/max_ln.h"

STDLIB_CONSTANT_FLOAT64_MAX_LN

Macro for the natural logarithm of the maximum double-precision floating-point number.

Did you find this page helpful?