time-to-botec/js/node_modules/@stdlib/array/shape/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

23 lines
305 B
Plaintext

{{alias}}( arr )
Determines array dimensions.
Parameters
----------
arr: Array
Input array.
Returns
-------
out: Array
Array shape.
Examples
--------
> var out = {{alias}}( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ] )
[ 2, 3 ]
See Also
--------