Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

SQRT_PI

Square root of the mathematical constant π.

Usage

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

SQRT_PI

Square root of the mathematical constant π.

var bool = ( SQRT_PI === 1.7724538509055160 );
// returns true

Examples

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

console.log( SQRT_PI );
// => 1.7724538509055160

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_SQRT_PI

Macro for the square root of the mathematical constant π.


See Also