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
5 changes: 4 additions & 1 deletion lib/node_modules/@stdlib/constants/float32/ln-ten/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ Macro for the [natural logarithm][@stdlib/math/base/special/ln] of `10` as a sin

## See Also

- <span class="package-name">[`@stdlib/constants/float32/ln-two`][@stdlib/constants/float32/ln-two]</span><span class="delimiter">: </span><span class="description">natural logarithm of single-precision floating-point number 2.</span>
- <span class="package-name">[`@stdlib/constants/float32/ln-two`][@stdlib/constants/float32/ln-two]</span><span class="delimiter">: </span><span class="description">natural logarithm of 2 as a single-precision floating-point number.</span>
- <span class="package-name">[`@stdlib/constants/float64/ln-ten`][@stdlib/constants/float64/ln-ten]</span><span class="delimiter">: </span><span class="description">natural logarithm of 10.</span>

</section>

Expand All @@ -140,6 +141,8 @@ Macro for the [natural logarithm][@stdlib/math/base/special/ln] of `10` as a sin

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

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

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

</section>
Expand Down
12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/math/strided/special/atanh-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@ console.log( y );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/math/strided/special/atan-by`][@stdlib/math/strided/special/atan-by]</span><span class="delimiter">: </span><span class="description">compute the arctangent of each element retrieved from an input strided array via a callback function.</span>

</section>

<!-- /.related -->
Expand All @@ -243,6 +249,12 @@ console.log( y );

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

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

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

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

</section>

<!-- /.links -->
22 changes: 21 additions & 1 deletion lib/node_modules/@stdlib/ndarray/index/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ var o = idx.toJSON();
}
```

will leak memory as `idx` is only consumed within an `if` block which never evaluates. In such scenarios, one should either refactor to avoid inadvertently holding onto memory or explicitly free the `ndindex`.
will leak memory as `idx` is only consumed within an `if` block which never evaluates. In such scenarios, one should either refactor to avoid inadvertently holding onto memory or explicitly free the `ndindex`.

```javascript
var array = require( '@stdlib/ndarray/array' );
Expand Down Expand Up @@ -574,6 +574,16 @@ console.log( 'Type: %s. Data type: %s.', o.type, o.dtype );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/ndarray/array`][@stdlib/ndarray/array]</span><span class="delimiter">: </span><span class="description">multidimensional arrays.</span>
- <span class="package-name">[`@stdlib/ndarray/ctor`][@stdlib/ndarray/ctor]</span><span class="delimiter">: </span><span class="description">multidimensional array constructor.</span>
- <span class="package-name">[`@stdlib/ndarray/fancy`][@stdlib/ndarray/fancy]</span><span class="delimiter">: </span><span class="description">fancy multidimensional array constructor.</span>
- <span class="package-name">[`@stdlib/ndarray/slice`][@stdlib/ndarray/slice]</span><span class="delimiter">: </span><span class="description">return a read-only view of an input ndarray.</span>
- <span class="package-name">[`@stdlib/ndarray/to-fancy`][@stdlib/ndarray/to-fancy]</span><span class="delimiter">: </span><span class="description">convert an ndarray to an object supporting fancy indexing.</span>

</section>

<!-- /.related -->
Expand All @@ -594,6 +604,16 @@ console.log( 'Type: %s. Data type: %s.', o.type, o.dtype );

[@stdlib/ndarray/to-fancy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/to-fancy

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

[@stdlib/ndarray/array]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/array

[@stdlib/ndarray/fancy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/fancy

[@stdlib/ndarray/slice]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/slice

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

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ console.log( '%s => %s', s1.toString(), s2.toString() );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/slice/base/normalize-slice`][@stdlib/slice/base/normalize-slice]</span><span class="delimiter">: </span><span class="description">normalize a Slice object.</span>

</section>

<!-- /.related -->
Expand All @@ -187,6 +193,12 @@ console.log( '%s => %s', s1.toString(), s2.toString() );

[@stdlib/slice/multi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/slice/multi

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

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

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

</section>

<!-- /.links -->
Loading