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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,9 @@ The namespace exports the following functions to manipulate multidimensional arr
157
157
- <spanclass="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
158
158
- <spanclass="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
159
159
- <spanclass="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
160
+
- <spanclass="signature">[`toTransposed( x )`][@stdlib/ndarray/to-transposed]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` containing the elements of an input `ndarray` but whose last two dimensions are transposed.</span>
160
161
- <spanclass="signature">[`toUnflattened( x, dim, sizes )`][@stdlib/ndarray/to-unflattened]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` in which a specified dimension of an input `ndarray` is expanded over multiple dimensions.</span>
162
+
- <spanclass="signature">[`transpose( x )`][@stdlib/ndarray/transpose]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input `ndarray` in which the last two dimensions are transposed.</span>
161
163
- <spanclass="signature">[`unflatten( x, dim, sizes )`][@stdlib/ndarray/unflatten]</span><spanclass="delimiter">: </span><spanclass="description">return a read-only view of an input ndarray in which a specified dimension is expanded over multiple dimensions.</span>
162
164
- <spanclass="signature">[`unshift( x, ...values )`][@stdlib/ndarray/unshift]</span><spanclass="delimiter">: </span><spanclass="description">return a one-dimensional ndarray formed by prepending provided scalar values to a one-dimensional input ndarray.</span>
163
165
- <spanclass="signature">[`vconcat( arrays )`][@stdlib/ndarray/vconcat]</span><spanclass="delimiter">: </span><spanclass="description">concatenate a list of ndarrays along the second-to-last dimension.</span>
Copy file name to clipboardExpand all lines: base/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
@@ -82,6 +82,7 @@ var o = ns;
82
82
- <spanclass="signature">[`countTruthy( arrays )`][@stdlib/ndarray/base/count-truthy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of truthy elements in an ndarray.</span>
83
83
- <spanclass="signature">[`ndarray( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/ctor]</span><spanclass="delimiter">: </span><spanclass="description">create a multidimensional array.</span>
84
84
- <spanclass="signature">[`data( x )`][@stdlib/ndarray/base/data-buffer]</span><spanclass="delimiter">: </span><spanclass="description">return the underlying data buffer of a provided ndarray.</span>
85
+
- <spanclass="signature">[`descriptor( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/descriptor]</span><spanclass="delimiter">: </span><spanclass="description">create a plain object describing how to interpret a data buffer as an n-dimensional array.</span>
85
86
- <spanclass="signature">[`diagonal( x, dims, k, writable )`][@stdlib/ndarray/base/diagonal]</span><spanclass="delimiter">: </span><spanclass="description">return a view of the diagonal of a matrix (or stack of matrices).</span>
86
87
- <spanclass="signature">[`dtypeAlignment( [dtype] )`][@stdlib/ndarray/base/dtype-alignment]</span><spanclass="delimiter">: </span><spanclass="description">return the alignment (in bytes) for an underlying array data type.</span>
87
88
- <spanclass="signature">[`dtypeChar( [dtype] )`][@stdlib/ndarray/base/dtype-char]</span><spanclass="delimiter">: </span><spanclass="description">return the single letter abbreviation for an underlying array data type.</span>
0 commit comments