SQRT_HALF

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

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_SQRT_HALF

Macro for the square root of 1/2.

Did you find this page helpful?