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
+11
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,17 @@ limitations under the License.
18
18
19
19
-->
20
20
21
+
22
+
<details>
23
+
<summary>
24
+
About stdlib...
25
+
</summary>
26
+
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
27
+
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
28
+
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
29
+
<p>To join us in bringing numerical computing to the web, get started by checking us out on <ahref="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <ahref="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
Copy file name to clipboardexpand all lines: base/README.md
+66
Original file line number
Diff line number
Diff line change
@@ -51,13 +51,24 @@ The namespace exports the following:
51
51
- <spanclass="signature">[`accessors( x )`][@stdlib/array/base/accessors]</span><spanclass="delimiter">: </span><spanclass="description">return element accessors for a provided array-like object.</span>
52
52
- <spanclass="signature">[`arraylike2object( x )`][@stdlib/array/base/arraylike2object]</span><spanclass="delimiter">: </span><spanclass="description">convert an array-like object to an object likely to have the same "shape".</span>
- <spanclass="signature">[`broadcastArray( x, inShape, outShape )`][@stdlib/array/base/broadcast-array]</span><spanclass="delimiter">: </span><spanclass="description">broadcast an array to a specified shape.</span>
54
55
- <spanclass="signature">[`cartesianPower( x, n )`][@stdlib/array/base/cartesian-power]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian power.</span>
55
56
- <spanclass="signature">[`cartesianProduct( x1, x2 )`][@stdlib/array/base/cartesian-product]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian product.</span>
56
57
- <spanclass="signature">[`cartesianSquare( x )`][@stdlib/array/base/cartesian-square]</span><spanclass="delimiter">: </span><spanclass="description">return the Cartesian square.</span>
57
58
- <spanclass="signature">[`copyIndexed( x )`][@stdlib/array/base/copy-indexed]</span><spanclass="delimiter">: </span><spanclass="description">copy the elements of an indexed array-like object to a new "generic" array.</span>
58
59
- <spanclass="signature">[`copy( x )`][@stdlib/array/base/copy]</span><spanclass="delimiter">: </span><spanclass="description">copy the elements of an array-like object to a new "generic" array.</span>
59
60
- <spanclass="signature">[`filledBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled "generic" array according to a provided callback function.</span>
60
61
- <spanclass="signature">[`filled( value, len )`][@stdlib/array/base/filled]</span><spanclass="delimiter">: </span><spanclass="description">create a filled "generic" array.</span>
62
+
- <spanclass="signature">[`filled2dBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled2d-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled two-dimensional nested array according to a provided callback function.</span>
- <spanclass="signature">[`filled3dBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled3d-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled three-dimensional nested array according to a provided callback function.</span>
- <spanclass="signature">[`filled4dBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled4d-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled four-dimensional nested array according to a provided callback function.</span>
- <spanclass="signature">[`filled5dBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled5d-by]</span><spanclass="delimiter">: </span><spanclass="description">create a filled five-dimensional nested array according to a provided callback function.</span>
- <spanclass="signature">[`flattenBy( x, shape, colexicographic, clbk[, thisArg] )`][@stdlib/array/base/flatten-by]</span><spanclass="delimiter">: </span><spanclass="description">flatten an n-dimensional nested array according to a callback function.</span>
- <spanclass="signature">[`flatten2dBy( x, shape, colexicographic, clbk[, thisArg] )`][@stdlib/array/base/flatten2d-by]</span><spanclass="delimiter">: </span><spanclass="description">flatten a two-dimensional nested array according to a callback function.</span>
- <spanclass="signature">[`oneTo( n )`][@stdlib/array/base/one-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1 starting from one.</span>
76
88
- <spanclass="signature">[`ones( len )`][@stdlib/array/base/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with ones.</span>
89
+
- <spanclass="signature">[`ones2d( shape )`][@stdlib/array/base/ones2d]</span><spanclass="delimiter">: </span><spanclass="description">create a two-dimensional nested array filled with ones.</span>
90
+
- <spanclass="signature">[`ones3d( shape )`][@stdlib/array/base/ones3d]</span><spanclass="delimiter">: </span><spanclass="description">create a three-dimensional nested array filled with ones.</span>
91
+
- <spanclass="signature">[`ones4d( shape )`][@stdlib/array/base/ones4d]</span><spanclass="delimiter">: </span><spanclass="description">create a four-dimensional nested array filled with ones.</span>
92
+
- <spanclass="signature">[`ones5d( shape )`][@stdlib/array/base/ones5d]</span><spanclass="delimiter">: </span><spanclass="description">create a five-dimensional nested array filled with ones.</span>
93
+
- <spanclass="signature">[`onesnd( shape )`][@stdlib/array/base/onesnd]</span><spanclass="delimiter">: </span><spanclass="description">create an n-dimensional nested array filled with ones.</span>
77
94
- <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>
78
95
- <spanclass="signature">[`take( x, indices )`][@stdlib/array/base/take]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an array.</span>
79
96
- <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>
80
97
- <spanclass="signature">[`unitspace( start, stop )`][@stdlib/array/base/unitspace]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1.</span>
81
98
- <spanclass="signature">[`zeroTo( n )`][@stdlib/array/base/zero-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by 1 starting from zero.</span>
82
99
- <spanclass="signature">[`zeros( len )`][@stdlib/array/base/zeros]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled "generic" array.</span>
100
+
- <spanclass="signature">[`zeros2d( shape )`][@stdlib/array/base/zeros2d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled two-dimensional nested array.</span>
101
+
- <spanclass="signature">[`zeros3d( shape )`][@stdlib/array/base/zeros3d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled three-dimensional nested array.</span>
102
+
- <spanclass="signature">[`zeros4d( shape )`][@stdlib/array/base/zeros4d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled four-dimensional nested array.</span>
103
+
- <spanclass="signature">[`zeros5d( shape )`][@stdlib/array/base/zeros5d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled five-dimensional nested array.</span>
104
+
- <spanclass="signature">[`zerosnd( shape )`][@stdlib/array/base/zerosnd]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled n-dimensional nested array.</span>
0 commit comments