Square Root of 1/2

Square root of 1/2.

Usage

var SQRT_HALF = require( '@stdlib/constants/float64/sqrt-half' );

SQRT_HALF

Square root of 1/2.

var bool = ( SQRT_HALF === 0.7071067811865476 );
// returns true

Examples

var SQRT_HALF = require( '@stdlib/constants/float64/sqrt-half' );

console.log( SQRT_HALF );
// => 0.7071067811865476
Did you find this page helpful?