FLOAT32_SQRT_TWO_PI

Square root of the mathematical constant π times 2 as a single-precision floating-point number.

Usage

var FLOAT32_SQRT_TWO_PI = require( '@stdlib/constants/float32/sqrt-two-pi' );

FLOAT32_SQRT_TWO_PI

Square root of the mathematical constant π times 2 as a single-precision floating-point number.

var bool = ( FLOAT32_SQRT_TWO_PI === 2.5066282749176025 );
// returns true

Examples

var FLOAT32_SQRT_TWO_PI = require( '@stdlib/constants/float32/sqrt-two-pi' );

console.log( FLOAT32_SQRT_TWO_PI );
// => 2.5066282749176025

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_SQRT_TWO_PI

Macro for the square root of the mathematical constant π times 2 as a single-precision floating-point number.

Did you find this page helpful?