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
ndemptyLike,"var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\nvar sh = x.shape\nvar dt = x.dtype\nvar y = ndemptyLike( x )\nsh = y.shape\ndt = y.dtype\n"
4126
4126
ndfilter,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { return v > 2.0; };\nvar y = ndfilter( x, f );\nndarray2array( y )\n"
4127
+
ndfilterMap,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v > 2.0 ) { return v * 10.0; } };\nvar y = ndfilterMap( x, f );\nndarray2array( y )\n"
4127
4128
ndims,"var n = ndims( ndzeros( [ 3, 3, 3 ] ) )\n"
4128
4129
nditerColumnEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumnEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\nv = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
4129
4130
nditerColumns,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumns( x );\nvar v = it.next().value;\nndarray2array( v )\nv = it.next().value;\nndarray2array( v )\n"
base.strided.dstdevyc.ndarray,"\nbase.strided.dstdevyc.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the standard deviation of a double-precision floating-point strided\n array using a one-pass algorithm proposed by Youngs and Cramer and\n alternative indexing semantics.\n"
1971
1971
base.strided.dsum,"\nbase.strided.dsum( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements.\n"
1972
1972
base.strided.dsum.ndarray,"\nbase.strided.dsum.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using alternative indexing semantics.\n"
1973
-
base.strided.dsumkbn,"\nbase.strided.dsumkbn( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm.\n"
1974
-
base.strided.dsumkbn.ndarray,"\nbase.strided.dsumkbn.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm and alternative indexing\n semantics.\n"
1973
+
base.strided.dsumkbn,"\nbase.strided.dsumkbn( N:integer, x:Float64Array, strideX:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm.\n"
1974
+
base.strided.dsumkbn.ndarray,"\nbase.strided.dsumkbn.ndarray( N:integer, x:Float64Array, strideX:integer, \n offsetX:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm and alternative indexing\n semantics.\n"
1975
1975
base.strided.dsumkbn2,"\nbase.strided.dsumkbn2( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using a second-order iterative Kahan–Babuška algorithm.\n"
1976
1976
base.strided.dsumkbn2.ndarray,"\nbase.strided.dsumkbn2.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using a second-order iterative Kahan–Babuška algorithm and alternative\n indexing semantics.\n"
1977
1977
base.strided.dsumors,"\nbase.strided.dsumors( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using ordinary recursive summation.\n"
ndempty,"\nndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an uninitialized ndarray having a specified shape and data type.\n"
4126
4126
ndemptyLike,"\nndemptyLike( x:ndarray[, options:Object] )\n Returns an uninitialized ndarray having the same shape and data type as a\n provided input ndarray.\n"
4127
4127
ndfilter,"\nndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )\n Returns a shallow copy of an ndarray containing only those elements which\n pass a test implemented by a predicate function.\n"
4128
+
ndfilterMap,"\nndfilterMap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )\n Filters and maps elements in an input ndarray to elements in a new output\n ndarray according to a callback function.\n"
4128
4129
ndims,"\nndims( x:ndarray )\n Returns the number of ndarray dimensions.\n"
4129
4130
nditerColumnEntries,"\nnditerColumnEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, column] pairs for each column in a\n matrix (or stack of matrices).\n"
4130
4131
nditerColumns,"\nnditerColumns( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each column in a matrix (or stack of\n matrices).\n"
0 commit comments