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: docs/migration-guides/numpy/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,10 +35,10 @@ limitations under the License.
35
35
| Broadcast a scalar to a specified shape |`np.broadcast_to(np.array(scalar), shape)`|[`broadcastScalar(scalar, shape)`][@stdlib/ndarray/broadcast-scalar]|
36
36
| Copy an array |`np.copy(x)`|[`copy(x)`][@stdlib/ndarray/copy]|
37
37
| Count the number of falsy values in an array |`x.size-np.count_nonzero(x)`|[`countFalsy(x)`][@stdlib/ndarray/count-falsy]|
38
-
| Count the number of truthy values in an array |`np.count_nonzeros(x)`|[`countTruthy(x)`][@stdlib/ndarray/count-truthy]|
38
+
| Count the number of truthy values in an array |`np.count_nonzero(x)`|[`countTruthy(x)`][@stdlib/ndarray/count-truthy]|
39
39
| Test whether an array includes a specific value |`np.any(np.equal(x,v))`|[`includes(x,v)`][@stdlib/ndarray/includes]|
40
40
| Reverse the elements along a dimension |`np.flip(x, axis=dim)`|[`reverseDimension(x, dim)`][@stdlib/ndarray/reverse-dimension]|
41
-
| Prepend a a specified number of singleton dimensions |`np.reshape(x, (1,)*n + x.shape)`|[`prependSingletonDimensions(x, n)`][@stdlib/ndarray/prepend-singleton-dimensions]|
41
+
| Prepend a specified number of singleton dimensions |`np.reshape(x, (1,)*n + x.shape)`|[`prependSingletonDimensions(x, n)`][@stdlib/ndarray/prepend-singleton-dimensions]|
42
42
| Test whether an array contains at least `n` truthy values |`np.count_nonzero(x) >= n`|[`some(x, n)`][@stdlib/ndarray/some]|
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
@@ -51,6 +51,7 @@ The namespace exposes the following APIs:
51
51
- <spanclass="signature">[`daxpy( arrays )`][@stdlib/blas/base/ndarray/daxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional double-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision floating-point ndarray `y`.</span>
52
52
- <spanclass="signature">[`dcopy( arrays )`][@stdlib/blas/base/ndarray/dcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional double-precision floating-point ndarray `x` into a one-dimensional double-precision floating-point ndarray `y`.</span>
53
53
- <spanclass="signature">[`ddot( arrays )`][@stdlib/blas/base/ndarray/ddot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional double-precision floating-point ndarrays.</span>
54
+
- <spanclass="signature">[`dswap( arrays )`][@stdlib/blas/base/ndarray/dswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two one-dimensional double-precision floating-point ndarrays.</span>
54
55
- <spanclass="signature">[`gasum( arrays )`][@stdlib/blas/base/ndarray/gasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional ndarray.</span>
55
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>
56
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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/ndarray/caxpy/README.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,28 +41,30 @@ var caxpy = require( '@stdlib/blas/base/ndarray/caxpy' );
41
41
Multiplies a one-dimensional single-precision complex floating-point ndarray `x` by a constant `alpha` and adds the result to a one-dimensional single-precision complex floating-point ndarray `y`.
0 commit comments