Skip to content
Merged
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
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,12 @@ var o = ns;
- <span class="signature">[`gvander( order, mode, M, N, x, strideX, out, ldo )`][@stdlib/blas/ext/base/gvander]</span><span class="delimiter">: </span><span class="description">generate a Vandermonde matrix.</span>
- <span class="signature">[`gwapx( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwapx]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each element in a strided array `x` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwax( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwax]</span><span class="delimiter">: </span><span class="description">multiply each element in a strided array `x` by a scalar constant and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwaxpb( N, alpha, beta, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwaxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a strided array `x` by a scalar constant and add a scalar constant before assigning the results to a strided array `w`.</span>
- <span class="signature">[`gwhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/gwhere]</span><span class="delimiter">: </span><span class="description">take elements from one of two strided arrays depending on a condition.</span>
- <span class="signature">[`gwxpy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/gwxpy]</span><span class="delimiter">: </span><span class="description">add elements of a strided array `x` to the corresponding elements of a strided array `y` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwxsa( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a strided array `x` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwxsy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/gwxsy]</span><span class="delimiter">: </span><span class="description">subtract elements of a strided array `y` from the corresponding elements of a strided array `x` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gxmy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gxmy]</span><span class="delimiter">: </span><span class="description">multiply elements of a strided array `x` by the corresponding elements of a strided array `y` and assign the results to `y`.</span>
- <span class="signature">[`gxpy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gxpy]</span><span class="delimiter">: </span><span class="description">add elements of a strided array `x` to the corresponding elements of a strided array `y` and assign the results to `y`.</span>
- <span class="signature">[`gxsa( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a strided array.</span>
- <span class="signature">[`gxsy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gxsy]</span><span class="delimiter">: </span><span class="description">subtract elements of a strided array `y` from the corresponding elements of a strided array `x` and assign the results to `y`.</span>
Expand Down Expand Up @@ -757,12 +760,18 @@ console.log( objectKeys( ns ) );

[@stdlib/blas/ext/base/gwax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwax

[@stdlib/blas/ext/base/gwaxpb]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwaxpb

[@stdlib/blas/ext/base/gwhere]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwhere

[@stdlib/blas/ext/base/gwxpy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxpy

[@stdlib/blas/ext/base/gwxsa]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxsa

[@stdlib/blas/ext/base/gwxsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxsy

[@stdlib/blas/ext/base/gxmy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gxmy

[@stdlib/blas/ext/base/gxpy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gxpy

[@stdlib/blas/ext/base/gxsa]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gxsa
Expand Down