You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/ndarray/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ The namespace exposes the following APIs:
56
56
- <spanclass="signature">[`gaxpy( arrays )`][@stdlib/blas/base/ndarray/gaxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional ndarray `x` by a constant `alpha` and add the result to a one-dimensional ndarray `y`.</span>
57
57
- <spanclass="signature">[`gcopy( arrays )`][@stdlib/blas/base/ndarray/gcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional ndarray `x` into a one-dimensional ndarray `y`.</span>
58
58
- <spanclass="signature">[`gdot( arrays )`][@stdlib/blas/base/ndarray/gdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional ndarrays.</span>
59
+
- <spanclass="signature">[`gswap( arrays )`][@stdlib/blas/base/ndarray/gswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two one-dimensional ndarrays.</span>
59
60
- <spanclass="signature">[`sasum( arrays )`][@stdlib/blas/base/ndarray/sasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional single-precision floating-point ndarray.</span>
60
61
- <spanclass="signature">[`saxpy( arrays )`][@stdlib/blas/base/ndarray/saxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision floating-point ndarray `y`.</span>
61
62
- <spanclass="signature">[`scopy( arrays )`][@stdlib/blas/base/ndarray/scopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional single-precision floating-point ndarray `x` into a one-dimensional single-precision floating-point ndarray `y`.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -266,7 +266,9 @@ The namespace contains the following multidimensional array utility functions:
266
266
- <spanclass="signature">[`orders()`][@stdlib/ndarray/orders]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray orders.</span>
267
267
- <spanclass="signature">[`rot180( x[, options] )`][@stdlib/ndarray/rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input ndarray rotated `180` degrees in a specified plane.</span>
268
268
- <spanclass="signature">[`rotl90( x, k )`][@stdlib/ndarray/rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees counterclockwise.</span>
269
+
- <spanclass="signature">[`toRot180( x[, options] )`][@stdlib/ndarray/to-rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `180` degrees in a specified plane.</span>
269
270
- <spanclass="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
271
+
- <spanclass="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
270
272
- <spanclass="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
271
273
- <spanclass="signature">[`unflatten( x, dim, sizes )`][@stdlib/ndarray/unflatten]</span><spanclass="delimiter">: </span><spanclass="description">return a read-only view of an input ndarray in which a specified dimension is expanded over multiple dimensions.</span>
0 commit comments