Skip to content
Merged
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
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/gapxsumpw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ console.log( v );
## See Also

- <span class="package-name">[`@stdlib/blas/ext/base/dapxsumpw`][@stdlib/blas/ext/base/dapxsumpw]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum using pairwise summation.</span>
- <span class="package-name">[`@stdlib/blas/ext/base/gapxsum`][@stdlib/blas/ext/base/gapxsum]</span><span class="delimiter">: </span><span class="description">add a constant to each strided array element and compute the sum.</span>
- <span class="package-name">[`@stdlib/blas/ext/base/gapxsum`][@stdlib/blas/ext/base/gapxsum]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each strided array element and compute the sum.</span>
- <span class="package-name">[`@stdlib/blas/ext/base/gsumpw`][@stdlib/blas/ext/base/gsumpw]</span><span class="delimiter">: </span><span class="description">calculate the sum of strided array elements using pairwise summation.</span>
- <span class="package-name">[`@stdlib/blas/ext/base/sapxsumpw`][@stdlib/blas/ext/base/sapxsumpw]</span><span class="delimiter">: </span><span class="description">add a constant to each single-precision floating-point strided array element and compute the sum using pairwise summation.</span>
- <span class="package-name">[`@stdlib/blas/ext/base/sapxsumpw`][@stdlib/blas/ext/base/sapxsumpw]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using pairwise summation.</span>

</section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,13 @@ Macro for the maximum base 10 exponent for a subnormal [single-precision floatin

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/constants/float32/max-base10-exponent`][@stdlib/constants/float32/max-base10-exponent]</span><span class="delimiter">: </span><span class="description">the maximum base 10 exponent for a single-precision floating-point number.</span>
- <span class="package-name">[`@stdlib/constants/float64/max-base10-exponent-subnormal`][@stdlib/constants/float64/max-base10-exponent-subnormal]</span><span class="delimiter">: </span><span class="description">the maximum base 10 exponent for a subnormal double-precision floating-point number.</span>

</section>

<!-- /.related -->
Expand All @@ -138,6 +145,10 @@ Macro for the maximum base 10 exponent for a subnormal [single-precision floatin

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

[@stdlib/constants/float32/max-base10-exponent]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/max-base10-exponent

[@stdlib/constants/float64/max-base10-exponent-subnormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/max-base10-exponent-subnormal

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

</section>
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/stats/base/cumax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ console.log( y );

[@stdlib/stats/base/cumin]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/cumin

[@stdlib/stats/strided/dcumax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dcumax
[@stdlib/stats/strided/dcumax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dcumax

[@stdlib/stats/base/scumax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/scumax

Expand Down
12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/strided/base/dtype-enum2str/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ str = enum2str( str2enum( 'uint8' ) );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/strided/base/dtype-str2enum`][@stdlib/strided/base/dtype-str2enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with a strided array data type string.</span>

</section>

<!-- /.related -->
Expand All @@ -134,6 +140,12 @@ str = enum2str( str2enum( 'uint8' ) );

<section class="links">

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

[@stdlib/strided/base/dtype-str2enum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/strided/base/dtype-str2enum

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

</section>

<!-- /.links -->
Loading