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/assert/is-dataview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bool = isDataView( new Uint32Array( 10 ) );
bool = isDataView( new Float64Array( 10 ) );
// returns false

bool = isDataView( new Array( 10 ) );
bool = isDataView( [ 0, 0, 0, 0 ] );
// returns false

bool = isDataView( new ArrayBuffer( 10 ) );
Expand All @@ -125,7 +125,7 @@ bool = isDataView( null );
## See Also

- <span class="package-name">[`@stdlib/assert/is-arraybuffer`][@stdlib/assert/is-arraybuffer]</span><span class="delimiter">: </span><span class="description">test if a value is an ArrayBuffer.</span>
- <span class="package-name">[`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]</span><span class="delimiter">: </span><span class="description">test if a value is a typed array.</span>
- <span class="package-name">[`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]</span><span class="delimiter">: </span><span class="description">test if a value is a built-in typed array.</span>

</section>

Expand Down
3 changes: 3 additions & 0 deletions lib/node_modules/@stdlib/random/strided/chisquare/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

## See Also

- <span class="package-name">[`@stdlib/random/chisquare`][@stdlib/random/chisquare]</span><span class="delimiter">: </span><span class="description">generate pseudorandom numbers drawn from a chi-square distribution.</span>
- <span class="package-name">[`@stdlib/random/base/chisquare`][@stdlib/random/base/chisquare]</span><span class="delimiter">: </span><span class="description">Chi-square distributed pseudorandom numbers.</span>
- <span class="package-name">[`@stdlib/random/array/chisquare`][@stdlib/random/array/chisquare]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a chi-square distribution.</span>

Expand All @@ -379,6 +380,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

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

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

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

<!-- </related-links> -->
Expand Down
3 changes: 3 additions & 0 deletions lib/node_modules/@stdlib/random/strided/lognormal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

## See Also

- <span class="package-name">[`@stdlib/random/lognormal`][@stdlib/random/lognormal]</span><span class="delimiter">: </span><span class="description">generate pseudorandom numbers drawn from a lognormal distribution.</span>
- <span class="package-name">[`@stdlib/random/base/lognormal`][@stdlib/random/base/lognormal]</span><span class="delimiter">: </span><span class="description">log-normally distributed pseudorandom numbers.</span>
- <span class="package-name">[`@stdlib/random/array/lognormal`][@stdlib/random/array/lognormal]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a lognormal distribution.</span>

Expand All @@ -230,6 +231,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

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

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

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

<!-- </related-links> -->
Expand Down
3 changes: 3 additions & 0 deletions lib/node_modules/@stdlib/random/strided/normal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

## See Also

- <span class="package-name">[`@stdlib/random/normal`][@stdlib/random/normal]</span><span class="delimiter">: </span><span class="description">generate pseudorandom numbers drawn from a normal distribution.</span>
- <span class="package-name">[`@stdlib/random/base/normal`][@stdlib/random/base/normal]</span><span class="delimiter">: </span><span class="description">normally distributed pseudorandom numbers.</span>
- <span class="package-name">[`@stdlib/random/array/normal`][@stdlib/random/array/normal]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a normal distribution.</span>

Expand All @@ -230,6 +231,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );

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

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

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

<!-- </related-links> -->
Expand Down
Loading