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/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,6 +174,8 @@ Lastly, the namespace contains various other functions for dealing with arrays,
174
174
- <spanclass="signature">[`anansLike( x[, dtype] )`][@stdlib/array/nans-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having the same length and data type as a provided array.</span>
175
175
- <spanclass="signature">[`anans( length[, dtype] )`][@stdlib/array/nans]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having a specified length.</span>
176
176
- <spanclass="signature">[`arrayNextDataType( [dtype] )`][@stdlib/array/next-dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the next larger array data type of the same kind.</span>
177
+
- <spanclass="signature">[`aoneToLike( x[, dtype] )`][@stdlib/array/one-to-like]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array.</span>
178
+
- <spanclass="signature">[`aoneTo( n[, dtype] )`][@stdlib/array/one-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one.</span>
177
179
- <spanclass="signature">[`aonesLike( x[, dtype] )`][@stdlib/array/ones-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with ones and having the same length and data type as a provided array.</span>
178
180
- <spanclass="signature">[`aones( length[, dtype] )`][@stdlib/array/ones]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with ones and having a specified length.</span>
179
181
- <spanclass="signature">[`typedarraypool()`][@stdlib/array/pool]</span><spanclass="delimiter">: </span><spanclass="description">allocate typed arrays from a typed array memory pool.</span>
@@ -193,6 +195,8 @@ Lastly, the namespace contains various other functions for dealing with arrays,
193
195
- <spanclass="signature">[`arrayview2iterator( src[, begin[, end]][, mapFcn[, thisArg]] )`][@stdlib/array/to-view-iterator]</span><spanclass="delimiter">: </span><spanclass="description">create an iterator from an array-like object view.</span>
194
196
- <spanclass="signature">[`complexarray()`][@stdlib/array/typed-complex]</span><spanclass="delimiter">: </span><spanclass="description">create a complex number typed array.</span>
195
197
- <spanclass="signature">[`realarray()`][@stdlib/array/typed-real]</span><spanclass="delimiter">: </span><spanclass="description">create a typed array.</span>
198
+
- <spanclass="signature">[`azeroToLike( x[, dtype] )`][@stdlib/array/zero-to-like]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from zero and having the same length and data type as a provided input array.</span>
199
+
- <spanclass="signature">[`azeroTo( n[, dtype] )`][@stdlib/array/zero-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from zero.</span>
196
200
- <spanclass="signature">[`azerosLike( x[, dtype] )`][@stdlib/array/zeros-like]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled array having the same length and data type as a provided array.</span>
197
201
- <spanclass="signature">[`azeros( length[, dtype] )`][@stdlib/array/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled array having a specified length.</span>
0 commit comments