FLOAT32_LN10

Natural logarithm of 10 as a single-precision floating-point number.

Usage

var FLOAT32_LN10 = require( '@stdlib/constants/float32/ln-ten' );

FLOAT32_LN10

Natural logarithm of 10 as a single-precision floating-point number.

var bool = ( FLOAT32_LN10 === 2.3025851249694824 );
// returns true

Examples

var FLOAT32_LN10 = require( '@stdlib/constants/float32/ln-ten' );

console.log( FLOAT32_LN10 );
// =>  2.3025851249694824

C APIs

Usage

#include "stdlib/constants/float32/ln_ten.h"

STDLIB_CONSTANT_FLOAT32_LN10

Macro for the natural logarithm of 10 as a single-precision floating-point number.

Did you find this page helpful?