Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 11, 2024
1 parent e4133a3 commit bd85aef
Show file tree
Hide file tree
Showing 11 changed files with 73 additions and 239 deletions.
295 changes: 62 additions & 233 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4126,6 +4126,7 @@ nditerMatrixEntries,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = ndit
nditerRowEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerRowEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\nv = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
nditerRows,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerRows( x );\nvar v = it.next().value;\nndarray2array( v )\nv = it.next().value;\nndarray2array( v )\n"
nditerSelectDimension,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerSelectDimension( x, 0 );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerStacks,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerStacks( x, [ 1, 2 ] );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerSubarrays,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerSubarrays( x, 2 );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerValues,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerValues( x );\nvar v = it.next().value\nv = it.next().value\n"
ndslice,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\nx.shape\nvar s = new MultiSlice( null, 1 )\nvar y = ndslice( x, s )\ny.shape\nndarray2array( y )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4127,6 +4127,7 @@ nditerMatrixEntries,"\nnditerMatrixEntries( x:ndarray[, options:Object] )\n R
nditerRowEntries,"\nnditerRowEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, row] pairs for each row in a\n matrix (or stack of matrices).\n"
nditerRows,"\nnditerRows( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each row in a matrix (or stack of\n matrices).\n"
nditerSelectDimension,"\nnditerSelectDimension( x:ndarray, dim:integer[, options:Object] )\n Returns an iterator which iterates over each view along a specified\n dimension.\n"
nditerStacks,"\nnditerStacks( x:ndarray, dims:Array<integer>[, options:Object] )\n Returns an iterator which iterates over each subarray in a stack of\n subarrays according to a list of specified stack dimensions.\n"
nditerSubarrays,"\nnditerSubarrays( x:ndarray, ndims:integer[, options:Object] )\n Returns an iterator which iterates over each subarray in a stack of\n subarrays.\n"
nditerValues,"\nnditerValues( x:ndarray[, options:Object] )\n Returns an iterator which returns individual elements from a provided\n ndarray.\n"
ndslice,"\nndslice( x:ndarray, ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, \n options:Object] )\n Returns a read-only view of an input ndarray.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4179,6 +4179,7 @@ nditerMatrixEntries,"nditerMatrixEntries( x[, options] )"
nditerRowEntries,"nditerRowEntries( x[, options] )"
nditerRows,"nditerRows( x[, options] )"
nditerSelectDimension,"nditerSelectDimension( x, dim[, options] )"
nditerStacks,"nditerStacks( x, dims[, options] )"
nditerSubarrays,"nditerSubarrays( x, ndims[, options] )"
nditerValues,"nditerValues( x[, options] )"
ndslice,"ndslice( x, ...s[, options] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4179,6 +4179,7 @@ nditerMatrixEntries,"nditerMatrixEntries( x:ndarray[, options:Object] )"
nditerRowEntries,"nditerRowEntries( x:ndarray[, options:Object] )"
nditerRows,"nditerRows( x:ndarray[, options:Object] )"
nditerSelectDimension,"nditerSelectDimension( x:ndarray, dim:integer[, options:Object] )"
nditerStacks,"nditerStacks( x:ndarray, dims:Array<integer>[, options:Object] )"
nditerSubarrays,"nditerSubarrays( x:ndarray, ndims:integer[, options:Object] )"
nditerValues,"nditerValues( x:ndarray[, options:Object] )"
ndslice,"ndslice( x:ndarray, ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, options:Object] )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit bd85aef

Please sign in to comment.