E
The mathematical constant e.
Usage
var E = require( '@stdlib/constants/float32/e' );
E
The mathematical constant e, also known as Euler's number or Napier's constant. e is the base of the natural logarithm.
var bool = ( E === 2.7182817459106445 );
// returns true
Examples
var E = require( '@stdlib/constants/float32/e' );
console.log( E );
// => 2.7182817459106445
C APIs
Usage
#include "stdlib/constants/float32/e.h"
STDLIB_CONSTANT_FLOAT32_E
Macro for Euler's number.