SQRT_TWO_PI

Square root of the mathematical constant π times 2.

Usage

var SQRT_TWO_PI = require( '@stdlib/constants/float64/sqrt-two-pi' );

SQRT_TWO_PI

Square root of the mathematical constant π times 2.

var bool = ( SQRT_TWO_PI === 2.5066282746310007 );
// returns true

Examples

var SQRT_TWO_PI = require( '@stdlib/constants/float64/sqrt-two-pi' );

console.log( SQRT_TWO_PI );
// => 2.5066282746310007

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_SQRT_TWO_PI

Macro for the square root of the mathematical constant π times 2.

Did you find this page helpful?