FLOAT32_SQRT_PI

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

Usage

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

FLOAT32_SQRT_PI

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

var bool = ( FLOAT32_SQRT_PI === 1.7724539041519165 );
// returns true

Examples

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

console.log( FLOAT32_SQRT_PI );
// => 1.7724539041519165

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_SQRT_PI

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

Did you find this page helpful?