time-to-botec/js/node_modules/@stdlib/number/float32/base/exponent/README.md

101 lines
2.2 KiB
Markdown
Raw Normal View History

<!--
@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.
-->
# Exponent
> Return an integer corresponding to the unbiased exponent of a [single-precision floating-point number][ieee754].
<section class="usage">
## Usage
```javascript
var exponentf = require( '@stdlib/number/float32/base/exponent' );
```
#### exponentf( x )
Returns an `integer` corresponding to the unbiased exponent of a [single-precision floating-point number][ieee754].
```javascript
var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
var exp = exponentf( toFloat32( 3.14e34 ) ); // => 2^114 ~ 2.08e34
// returns 114
exp = exponentf( toFloat32( 3.14e-34 ) ); // => 2^-112 ~ 1.93e-34
// returns -112
exp = exponentf( toFloat32( -3.14 ) );
// returns 1
exp = exponentf( 0.0 );
// returns -127
exp = exponentf( NaN );
// returns 128
```
</section>
<!-- /.usage -->
<section class="examples">
## Examples
<!-- eslint no-undef: "error" -->
```javascript
var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var pow = require( '@stdlib/math/base/special/pow' );
var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
var exponentf = require( '@stdlib/number/float32/base/exponent' );
var frac;
var exp;
var x;
var e;
var i;
// Generate random numbers and extract their exponents...
for ( i = 0; i < 100; i++ ) {
frac = randu() * 10.0;
exp = round( randu()*44.0 ) - 22;
x = frac * pow( 10.0, exp );
x = toFloat32( x );
e = exponentf( x );
console.log( 'x: %d. unbiased exponent: %d.', x, e );
}
```
</section>
<!-- /.examples -->
<section class="links">
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
</section>
<!-- /.links -->