LOG2E

Base 2 logarithm of the mathematical constant e.

Usage

var LOG2E = require( '@stdlib/constants/float64/log2-e' );

LOG2E

Base 2 logarithm of the mathematical constant e.

var bool = ( LOG2E === 1.4426950408889634 );
// returns true

Examples

var LOG2E = require( '@stdlib/constants/float64/log2-e' );

console.log( LOG2E );
// => 1.4426950408889634

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_LOG2E

Macro for the base 2 logarithm of the mathematical constant e.

Did you find this page helpful?