Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/number/float32/base/to-float16/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ int main( void ) {

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/number/float64/base/to-float16`][@stdlib/number/float64/base/to-float16]</span><span class="delimiter">: </span><span class="description">convert a double-precision floating-point number to the nearest half-precision floating-point number.</span>

</section>

<!-- /.related -->
Expand All @@ -180,6 +186,12 @@ int main( void ) {

[half-precision-floating-point-format]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format

<!-- <related-links> -->

[@stdlib/number/float64/base/to-float16]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base/to-float16

<!-- </related-links> -->

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@

// MODULES //

var float32ToInt32 = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = float32ToInt32;
module.exports = main;
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@

// MODULES //

var float32ToUint32 = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = float32ToUint32;
module.exports = main;
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ console.log( d );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/number/float64/base/ulp-difference`][@stdlib/number/float64/base/ulp-difference]</span><span class="delimiter">: </span><span class="description">compute the number of representable double-precision floating-point values that separate two double-precision floating-point numbers along the real number line.</span>

</section>

<!-- /.related -->
Expand All @@ -139,6 +145,8 @@ console.log( d );

<!-- <related-links> -->

[@stdlib/number/float64/base/ulp-difference]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base/ulp-difference

<!-- </related-links> -->

</section>
Expand Down