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/array/base/README.md
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ The namespace exports the following:
61
61
- <spanclass="signature">[`bbinary3d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
62
62
- <spanclass="signature">[`bbinary4d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
63
63
- <spanclass="signature">[`bbinary5d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-binary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two broadcasted nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
64
+
- <spanclass="signature">[`bquaternary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-quaternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quaternary callback to elements in four broadcasted nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
65
+
- <spanclass="signature">[`bquinary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-quinary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in four broadcasted nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
64
66
- <spanclass="signature">[`bternary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-ternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three broadcasted nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
65
67
- <spanclass="signature">[`bunary2d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-unary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a two-dimensional nested output array.</span>
66
68
- <spanclass="signature">[`bunary3d( arrays, shapes, fcn )`][@stdlib/array/base/broadcasted-unary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a three-dimensional nested output array.</span>
@@ -109,9 +111,18 @@ The namespace exports the following:
109
111
- <spanclass="signature">[`ones4d( shape )`][@stdlib/array/base/ones4d]</span><spanclass="delimiter">: </span><spanclass="description">create a four-dimensional nested array filled with ones.</span>
110
112
- <spanclass="signature">[`ones5d( shape )`][@stdlib/array/base/ones5d]</span><spanclass="delimiter">: </span><spanclass="description">create a five-dimensional nested array filled with ones.</span>
111
113
- <spanclass="signature">[`onesnd( shape )`][@stdlib/array/base/onesnd]</span><spanclass="delimiter">: </span><spanclass="description">create an n-dimensional nested array filled with ones.</span>
114
+
- <spanclass="signature">[`quaternary2d( arrays, shape, fcn )`][@stdlib/array/base/quaternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quaternary callback to elements in four two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
115
+
- <spanclass="signature">[`quinary2d( arrays, shape, fcn )`][@stdlib/array/base/quinary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
112
116
- <spanclass="signature">[`setter( dtype )`][@stdlib/array/base/setter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for setting an element in an indexed array-like object.</span>
117
+
- <spanclass="signature">[`strided2array2d( x, shape, strides, offset )`][@stdlib/array/base/strided2array2d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a two-dimensional nested array.</span>
118
+
- <spanclass="signature">[`strided2array3d( x, shape, strides, offset )`][@stdlib/array/base/strided2array3d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a three-dimensional nested array.</span>
119
+
- <spanclass="signature">[`strided2array4d( x, shape, strides, offset )`][@stdlib/array/base/strided2array4d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a four-dimensional nested array.</span>
120
+
- <spanclass="signature">[`strided2array5d( x, shape, strides, offset )`][@stdlib/array/base/strided2array5d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a five-dimensional nested array.</span>
113
121
- <spanclass="signature">[`take( x, indices )`][@stdlib/array/base/take]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an array.</span>
114
122
- <spanclass="signature">[`ternary2d( arrays, shape, fcn )`][@stdlib/array/base/ternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
123
+
- <spanclass="signature">[`ternary3d( arrays, shape, fcn )`][@stdlib/array/base/ternary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
124
+
- <spanclass="signature">[`ternary4d( arrays, shape, fcn )`][@stdlib/array/base/ternary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
125
+
- <spanclass="signature">[`ternary5d( arrays, shape, fcn )`][@stdlib/array/base/ternary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a ternary callback to elements in three five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
115
126
- <spanclass="signature">[`toAccessorArray( arr )`][@stdlib/array/base/to-accessor-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an array-like object to a minimal array-like object supporting the accessor protocol.</span>
116
127
- <spanclass="signature">[`unary2dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary2d-by]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary function to each element retrieved from a two-dimensional nested input array according to a callback function and assign results to elements in a two-dimensional nested output array.</span>
117
128
- <spanclass="signature">[`unary2d( arrays, shape, fcn )`][@stdlib/array/base/unary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a two-dimensional nested input array and assign results to elements in a two-dimensional nested output array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/iter/README.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,13 @@ var o = ns;
43
43
44
44
<divclass="namespace-toc">
45
45
46
+
- <spanclass="signature">[`nditerColumnEntries( x[, options] )`][@stdlib/ndarray/iter/column-entries]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns `[index, column]` pairs for each column in a matrix (or stack of matrices).</span>
46
47
- <spanclass="signature">[`nditerColumns( x[, options] )`][@stdlib/ndarray/iter/columns]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which iterates over each column in a matrix (or stack of matrices).</span>
47
48
- <spanclass="signature">[`nditerEntries( x[, options] )`][@stdlib/ndarray/iter/entries]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns `[index, value]` pairs for each element in a provided `ndarray`.</span>
48
49
- <spanclass="signature">[`nditerIndices( shape[, options] )`][@stdlib/ndarray/iter/indices]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns indices for use indexing into an `ndarray` having a specified shape.</span>
50
+
- <spanclass="signature">[`nditerMatrices( x[, options] )`][@stdlib/ndarray/iter/matrices]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which iterates over each matrix in a stack of matrices.</span>
51
+
- <spanclass="signature">[`nditerMatrixEntries( x[, options] )`][@stdlib/ndarray/iter/matrix-entries]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns `[index, matrix]` pairs for each matrix in a stack of matrices.</span>
52
+
- <spanclass="signature">[`nditerRowEntries( x[, options] )`][@stdlib/ndarray/iter/row-entries]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns `[index, row]` pairs for each row in a matrix (or stack of matrices).</span>
49
53
- <spanclass="signature">[`nditerRows( x[, options] )`][@stdlib/ndarray/iter/rows]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which iterates over each row in a matrix (or stack of matrices).</span>
50
54
- <spanclass="signature">[`nditer2arrayEach( iterator )`][@stdlib/ndarray/iter/to-array-each]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which converts each iterated `ndarray` to a generic array.</span>
51
55
- <spanclass="signature">[`nditerValues( x[, options] )`][@stdlib/ndarray/iter/values]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator which returns individual elements from a provided `ndarray`.</span>
0 commit comments