FLOAT32_SQRT_HALF_PI

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

Usage

var FLOAT32_SQRT_HALF_PI = require( '@stdlib/constants/float32/sqrt-half-pi' );

FLOAT32_SQRT_HALF_PI

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

var bool = ( FLOAT32_SQRT_HALF_PI === 1.2533141374588013 );
// returns true

Examples

var FLOAT32_SQRT_HALF_PI = require( '@stdlib/constants/float32/sqrt-half-pi' );

console.log( FLOAT32_SQRT_HALF_PI );
// => 1.2533141374588013

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_SQRT_HALF_PI

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

Did you find this page helpful?