LN_PI

Natural logarithm of the mathematical constant π.

Usage

var LN_PI = require( '@stdlib/constants/float64/ln-pi' );

LN_PI

Natural logarithm of the mathematical constant π.

var bool = ( LN_PI === 1.1447298858494002 );
// returns true

Examples

var LN_PI = require( '@stdlib/constants/float64/ln-pi' );

console.log( LN_PI );
// => 1.1447298858494002

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_LN_PI

Macro for the natural logarithm of the mathematical constant π.

Did you find this page helpful?