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: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,7 @@ In addition, the namespace contains the following multidimensional array utility
115
115
- <spanclass="signature">[`dtypes( [kind] )`][@stdlib/ndarray/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data types.</span>
116
116
- <spanclass="signature">[`emptyLike( x[, options] )`][@stdlib/ndarray/empty-like]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having the same shape and data type as a provided ndarray.</span>
117
117
- <spanclass="signature">[`empty( shape[, options] )`][@stdlib/ndarray/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having a specified shape and data type.</span>
118
+
- <spanclass="signature">[`every( x[, options] )`][@stdlib/ndarray/every]</span><spanclass="delimiter">: </span><spanclass="description">test whether every element along one or more `ndarray` dimensions is truthy.</span>
- <spanclass="signature">[`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill an input ndarray according to a callback function.</span>
120
121
- <spanclass="signature">[`fill( x, value )`][@stdlib/ndarray/fill]</span><spanclass="delimiter">: </span><spanclass="description">fill an input `ndarray` with a specified value.</span>
@@ -124,6 +125,7 @@ In addition, the namespace contains the following multidimensional array utility
124
125
- <spanclass="signature">[`flags( x )`][@stdlib/ndarray/flags]</span><spanclass="delimiter">: </span><spanclass="description">return the flags of a provided ndarray.</span>
125
126
- <spanclass="signature">[`forEach( x, fcn[, thisArg] )`][@stdlib/ndarray/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a callback function once for each ndarray element.</span>
126
127
- <spanclass="signature">[`scalar2ndarray( value[, options] )`][@stdlib/ndarray/from-scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert a scalar value to a zero-dimensional ndarray.</span>
128
+
- <spanclass="signature">[`includes( x, searchElement[, options] )`][@stdlib/ndarray/includes]</span><spanclass="delimiter">: </span><spanclass="description">test whether an `ndarray` contains a specified value along one or more dimensions.</span>
127
129
- <spanclass="signature">[`ind2sub( shape, idx[, options] )`][@stdlib/ndarray/ind2sub]</span><spanclass="delimiter">: </span><spanclass="description">convert a linear index to an array of subscripts.</span>
128
130
- <spanclass="signature">[`indexModes()`][@stdlib/ndarray/index-modes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray index modes.</span>
129
131
- <spanclass="signature">[`ndindex( x[, options] )`][@stdlib/ndarray/index]</span><spanclass="delimiter">: </span><spanclass="description">ndarray index constructor.</span>
@@ -160,6 +162,7 @@ In addition, the namespace contains the following multidimensional array utility
160
162
- <spanclass="signature">[`ndarray2array( x )`][@stdlib/ndarray/to-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to a generic array.</span>
161
163
- <spanclass="signature">[`ndarray2fancy( x[, options] )`][@stdlib/ndarray/to-fancy]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to an object supporting fancy indexing.</span>
162
164
- <spanclass="signature">[`ndarray2json( x )`][@stdlib/ndarray/to-json]</span><spanclass="delimiter">: </span><spanclass="description">serialize an ndarray as a JSON object.</span>
165
+
- <spanclass="signature">[`vector`][@stdlib/ndarray/vector]</span><spanclass="delimiter">: </span><spanclass="description">vector constructors and associated utilities.</span>
163
166
- <spanclass="signature">[`zerosLike( x[, options] )`][@stdlib/ndarray/zeros-like]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled ndarray having the same shape and data type as a provided ndarray.</span>
164
167
- <spanclass="signature">[`zeros( shape[, options] )`][@stdlib/ndarray/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled ndarray having a specified shape and data type.</span>
Copy file name to clipboardExpand all lines: vector/README.md
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,22 @@ The namespace exports the following:
53
53
54
54
<!-- <toc pattern="*"> -->
55
55
56
+
<divclass="namespace-toc">
57
+
58
+
- <spanclass="signature">[`BooleanVector()`][@stdlib/ndarray/vector/bool]</span><spanclass="delimiter">: </span><spanclass="description">create a boolean vector (i.e., a one-dimensional ndarray).</span>
59
+
- <spanclass="signature">[`vector()`][@stdlib/ndarray/vector/ctor]</span><spanclass="delimiter">: </span><spanclass="description">create a vector (i.e., a one-dimensional ndarray).</span>
60
+
- <spanclass="signature">[`Float32Vector()`][@stdlib/ndarray/vector/float32]</span><spanclass="delimiter">: </span><spanclass="description">create a single-precision floating-point vector (i.e., a one-dimensional ndarray).</span>
61
+
- <spanclass="signature">[`Float64Vector()`][@stdlib/ndarray/vector/float64]</span><spanclass="delimiter">: </span><spanclass="description">create a double-precision floating-point vector (i.e., a one-dimensional ndarray).</span>
62
+
- <spanclass="signature">[`Int16Vector()`][@stdlib/ndarray/vector/int16]</span><spanclass="delimiter">: </span><spanclass="description">create a signed 16-bit integer vector (i.e., a one-dimensional ndarray).</span>
63
+
- <spanclass="signature">[`Int32Vector()`][@stdlib/ndarray/vector/int32]</span><spanclass="delimiter">: </span><spanclass="description">create a signed 32-bit integer vector (i.e., a one-dimensional ndarray).</span>
64
+
- <spanclass="signature">[`Int8Vector()`][@stdlib/ndarray/vector/int8]</span><spanclass="delimiter">: </span><spanclass="description">create a signed 8-bit integer vector (i.e., a one-dimensional ndarray).</span>
65
+
- <spanclass="signature">[`Uint16Vector()`][@stdlib/ndarray/vector/uint16]</span><spanclass="delimiter">: </span><spanclass="description">create an unsigned 16-bit integer vector (i.e., a one-dimensional ndarray).</span>
66
+
- <spanclass="signature">[`Uint32Vector()`][@stdlib/ndarray/vector/uint32]</span><spanclass="delimiter">: </span><spanclass="description">create an unsigned 32-bit integer vector (i.e., a one-dimensional ndarray).</span>
67
+
- <spanclass="signature">[`Uint8Vector()`][@stdlib/ndarray/vector/uint8]</span><spanclass="delimiter">: </span><spanclass="description">create an unsigned 8-bit integer vector (i.e., a one-dimensional ndarray).</span>
68
+
- <spanclass="signature">[`Uint8ClampedVector()`][@stdlib/ndarray/vector/uint8c]</span><spanclass="delimiter">: </span><spanclass="description">create a clamped unsigned 8-bit integer vector (i.e., a one-dimensional ndarray).</span>
0 commit comments