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
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,13 @@ Macro for the maximum biased base 2 exponent for a [single-precision floating-po

<section class="related">

* * *

## See Also

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

</section>

<!-- /.related -->
Expand All @@ -136,6 +143,10 @@ Macro for the maximum biased base 2 exponent for a [single-precision floating-po

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

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

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

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

</section>
Expand Down
11 changes: 11 additions & 0 deletions lib/node_modules/@stdlib/math/base/special/asecdf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ int main( void ) {

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/math/base/special/asec`][@stdlib/math/base/special/asec]</span><span class="delimiter">: </span><span class="description">compute the inverse (arc) secant of a number.</span>
- <span class="package-name">[`@stdlib/math/base/special/asech`][@stdlib/math/base/special/asech]</span><span class="delimiter">: </span><span class="description">compute the hyperbolic arcsecant of a number.</span>

</section>

<!-- /.related -->
Expand All @@ -196,6 +203,10 @@ int main( void ) {

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

[@stdlib/math/base/special/asec]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asec

[@stdlib/math/base/special/asech]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asech

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

</section>
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/iter/special/log/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ while ( true ) {

## See Also

- <span class="package-name">[`@stdlib/math/base/special/log`][@stdlib/math/base/special/log]</span><span class="delimiter">: </span><span class="description">base `b` logarithm.</span>
- <span class="package-name">[`@stdlib/math/base/special/log`][@stdlib/math/base/special/log]</span><span class="delimiter">: </span><span class="description">compute the base `b` logarithm of a double-precision floating-point number.</span>
- <span class="package-name">[`@stdlib/math/iter/special/log10`][@stdlib/math/iter/special/log10]</span><span class="delimiter">: </span><span class="description">create an iterator which evaluates the common logarithm (logarithm with base 10) for each iterated value.</span>
- <span class="package-name">[`@stdlib/math/iter/special/log1p`][@stdlib/math/iter/special/log1p]</span><span class="delimiter">: </span><span class="description">create an iterator which evaluates the natural logarithm of 1+x for each iterated value.</span>
- <span class="package-name">[`@stdlib/math/iter/special/log2`][@stdlib/math/iter/special/log2]</span><span class="delimiter">: </span><span class="description">create an iterator which evaluates the binary logarithm for each iterated value.</span>
Expand Down
Loading