Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
Planeshifter committed Dec 8, 2023
2 parents fdaf971 + bf038c4 commit 00e49fb
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
- name: 'Post report as comment to PR'
if: github.event_name == 'pull_request'
# Pin action to full length commit SHA
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
script: |
Expand All @@ -210,7 +210,7 @@ jobs:
- name: 'Post report as comment to commit'
if: github.event_name == 'push'
# Pin action to full length commit SHA
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_test_npm_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
# Install MSYS2:
- name: 'Install MSYS2'
# Pin action to full length commit SHA
uses: msys2/setup-msys2@27b3aa77f672cb6b3054121cfd80c3d22ceebb1d # v2.20.1
uses: msys2/setup-msys2@76b1bed68bac51ebe46cb431077217d4b98e2b7b # v2.21.0
with:
# Set the MSYS system:
msystem: MINGW64
Expand Down
2 changes: 2 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/gfill/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ console.log( x );

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



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

</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,13 @@ int main( void ) {
<section class="related">
* * *
## See Also
- <span class="package-name">[`@stdlib/number/float64/base/get-high-word`][@stdlib/number/float64/base/get-high-word]</span><span class="delimiter">: </span><span class="description">return an unsigned 32-bit integer corresponding to the more significant 32 bits of a double-precision floating-point number.</span>
- <span class="package-name">[`@stdlib/number/float64/base/set-low-word`][@stdlib/number/float64/base/set-low-word]</span><span class="delimiter">: </span><span class="description">set the less significant 32 bits of a double-precision floating-point number.</span>
</section>
<!-- /.related -->
Expand All @@ -195,6 +202,14 @@ int main( void ) {
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
<!-- <related-links> -->
[@stdlib/number/float64/base/get-high-word]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base/get-high-word
[@stdlib/number/float64/base/set-low-word]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base/set-low-word
<!-- </related-links> -->
</section>
<!-- /.links -->
13 changes: 13 additions & 0 deletions lib/node_modules/@stdlib/random/array/cosine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,13 @@ logEach( '%f', x4 );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/random/base/cosine`][@stdlib/random/base/cosine]</span><span class="delimiter">: </span><span class="description">raised cosine distributed pseudorandom numbers.</span>
- <span class="package-name">[`@stdlib/random/strided/cosine`][@stdlib/random/strided/cosine]</span><span class="delimiter">: </span><span class="description">fill a strided array with pseudorandom numbers drawn from a raised cosine distribution.</span>

</section>

<!-- /.related -->
Expand All @@ -347,6 +354,12 @@ logEach( '%f', x4 );

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

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

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

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

</section>

<!-- /.links -->
16 changes: 16 additions & 0 deletions lib/node_modules/@stdlib/random/array/uniform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,14 @@ logEach( '%f', x4 );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/random/array/discrete-uniform`][@stdlib/random/array/discrete-uniform]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a discrete uniform distribution.</span>
- <span class="package-name">[`@stdlib/random/base/uniform`][@stdlib/random/base/uniform]</span><span class="delimiter">: </span><span class="description">uniformly distributed pseudorandom numbers.</span>
- <span class="package-name">[`@stdlib/random/strided/uniform`][@stdlib/random/strided/uniform]</span><span class="delimiter">: </span><span class="description">fill a strided array with pseudorandom numbers drawn from a continuous uniform distribution.</span>

</section>

<!-- /.related -->
Expand All @@ -347,6 +355,14 @@ logEach( '%f', x4 );

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

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

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

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

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

</section>

<!-- /.links -->

0 comments on commit 00e49fb

Please sign in to comment.