README.md (1749B)
1 <!-- 2 3 @license Apache-2.0 4 5 Copyright (c) 2018 The Stdlib Authors. 6 7 Licensed under the Apache License, Version 2.0 (the "License"); 8 you may not use this file except in compliance with the License. 9 You may obtain a copy of the License at 10 11 http://www.apache.org/licenses/LICENSE-2.0 12 13 Unless required by applicable law or agreed to in writing, software 14 distributed under the License is distributed on an "AS IS" BASIS, 15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 See the License for the specific language governing permissions and 17 limitations under the License. 18 19 --> 20 21 # Smallest Subnormal 22 23 > Smallest positive **denormalized** [half-precision floating-point number][half-precision-floating-point-format]. 24 25 <section class="usage"> 26 27 ## Usage 28 29 <!-- eslint-disable id-length --> 30 31 ```javascript 32 var FLOAT16_SMALLEST_SUBNORMAL = require( '@stdlib/constants/float16/smallest-subnormal' ); 33 ``` 34 35 #### FLOAT16_SMALLEST_SUBNORMAL 36 37 Smallest positive **denormalized** [half-precision floating-point number][half-precision-floating-point-format]. 38 39 <!-- eslint-disable id-length --> 40 41 ```javascript 42 var bool = ( FLOAT16_SMALLEST_SUBNORMAL === 5.960464477539063e-8 ); 43 // returns true 44 ``` 45 46 </section> 47 48 <!-- /.usage --> 49 50 <section class="examples"> 51 52 ## Examples 53 54 <!-- TODO: better example --> 55 56 <!-- eslint no-undef: "error" --> 57 58 <!-- eslint-disable id-length --> 59 60 ```javascript 61 var FLOAT16_SMALLEST_SUBNORMAL = require( '@stdlib/constants/float16/smallest-subnormal' ); 62 63 console.log( FLOAT16_SMALLEST_SUBNORMAL ); 64 // => 5.960464477539063e-8 65 ``` 66 67 </section> 68 69 <!-- /.examples --> 70 71 <section class="links"> 72 73 [half-precision-floating-point-format]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format 74 75 </section> 76 77 <!-- /.links -->