95 lines
2.3 KiB
Markdown
95 lines
2.3 KiB
Markdown
|
<!--
|
||
|
|
||
|
@license Apache-2.0
|
||
|
|
||
|
Copyright (c) 2018 The Stdlib Authors.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
-->
|
||
|
|
||
|
# Square Root of Epsilon
|
||
|
|
||
|
> [Square root][@stdlib/math/base/special/sqrt] of [single-precision floating-point epsilon][@stdlib/constants/float32/eps].
|
||
|
|
||
|
<section class="usage">
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```javascript
|
||
|
var FLOAT32_SQRT_EPSILON = require( '@stdlib/constants/float32/sqrt-eps' );
|
||
|
```
|
||
|
|
||
|
#### FLOAT32_SQRT_EPSILON
|
||
|
|
||
|
[Square root][@stdlib/math/base/special/sqrt] of [single-precision floating-point epsilon][@stdlib/constants/float32/eps].
|
||
|
|
||
|
```javascript
|
||
|
var bool = ( FLOAT32_SQRT_EPSILON === 0.0003452669770922512 );
|
||
|
// returns true
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.usage -->
|
||
|
|
||
|
<section class="examples">
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
<!-- eslint no-undef: "error" -->
|
||
|
|
||
|
```javascript
|
||
|
var abs = require( '@stdlib/math/base/special/abs' );
|
||
|
var max = require( '@stdlib/math/base/special/max' );
|
||
|
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
|
||
|
var randu = require( '@stdlib/random/base/randu' );
|
||
|
var FLOAT32_SQRT_EPSILON = require( '@stdlib/constants/float32/sqrt-eps' );
|
||
|
|
||
|
var bool;
|
||
|
var a;
|
||
|
var b;
|
||
|
var i;
|
||
|
|
||
|
function isApprox( a, b ) {
|
||
|
var delta;
|
||
|
var tol;
|
||
|
|
||
|
delta = float64ToFloat32( abs( a - b ) );
|
||
|
tol = float64ToFloat32( FLOAT32_SQRT_EPSILON * max( abs( a ), abs( b ) ) );
|
||
|
|
||
|
return ( delta <= tol );
|
||
|
}
|
||
|
|
||
|
for ( i = 0; i < 100; i++ ) {
|
||
|
a = float64ToFloat32( randu()*10.0 );
|
||
|
b = float64ToFloat32( a + (randu()*2.0e-2) - 1.0e-2 );
|
||
|
bool = isApprox( a, b );
|
||
|
console.log( '%d %s approximately equal to %d', a, ( bool ) ? 'is' : 'is not', b );
|
||
|
}
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.examples -->
|
||
|
|
||
|
<section class="links">
|
||
|
|
||
|
[@stdlib/math/base/special/sqrt]: https://www.npmjs.com/package/@stdlib/math-base-special-sqrt
|
||
|
|
||
|
[@stdlib/constants/float32/eps]: https://www.npmjs.com/package/@stdlib/constants/tree/main/float32/eps
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.links -->
|