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 Jan 18, 2024
1 parent 4b91141 commit b9bc92d
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ arrayview2iteratorRight,"var it = arrayview2iteratorRight( [ 1, 2, 3, 4 ], 1, 3
AsyncIteratorSymbol,"var s = AsyncIteratorSymbol\n"
azeros,"var arr = azeros( 2 )\narr = azeros( 2, 'float32' )\n"
azerosLike,"var x = new Float64Array( 2 );\nvar y = azerosLike( x )\ny = azerosLike( x, 'float32' )\n"
azeroTo,"var arr = azeroTo( 2 )\narr = azeroTo( 2, 'float32' )\n"
bartlettTest,"var x = [ 2.9, 3.0, 2.5, 2.6, 3.2 ];\nvar y = [ 3.8, 2.7, 4.0, 2.4 ];\nvar z = [ 2.8, 3.4, 3.7, 2.2, 2.0 ];\nvar out = bartlettTest( x, y, z )\nvar arr = [ 2.9, 3.0, 2.5, 2.6, 3.2,\n 3.8, 2.7, 4.0, 2.4,\n 2.8, 3.4, 3.7, 2.2, 2.0\n ];\nvar groups = [\n 'a', 'a', 'a', 'a', 'a',\n 'b', 'b', 'b', 'b',\n 'c', 'c', 'c', 'c', 'c'\n ];\nout = bartlettTest( arr, { 'groups': groups } )\n"
base.abs,"var y = base.abs( -1.0 )\ny = base.abs( 2.0 )\ny = base.abs( 0.0 )\ny = base.abs( -0.0 )\ny = base.abs( NaN )\n"
base.abs2,"var y = base.abs2( -1.0 )\ny = base.abs2( 2.0 )\ny = base.abs2( 0.0 )\ny = base.abs2( -0.0 )\ny = base.abs2( NaN )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

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 @@ -57,6 +57,7 @@ arrayview2iteratorRight,"\narrayview2iteratorRight( src:ArrayLikeObject[, begin:
AsyncIteratorSymbol,"\nAsyncIteratorSymbol\n Async iterator symbol.\n"
azeros,"\nazeros( length:integer[, dtype:string] )\n Returns a zero-filled array having a specified length.\n"
azerosLike,"\nazerosLike( x:TypedArray|Array[, dtype:string] )\n Returns a zero-filled array having the same length and data type as a\n provided input array.\n"
azeroTo,"\nazeroTo( n:integer[, dtype:string] )\n Generates a linearly spaced numeric array whose elements increment by 1\n starting from zero.\n"
bartlettTest,"\nbartlettTest( ...x:Array[, options:Object] )\n Computes Bartlett’s test for equal variances.\n"
base.abs,"\nbase.abs( x:number )\n Computes the absolute value of a double-precision floating-point number `x`.\n"
base.abs2,"\nbase.abs2( x:number )\n Computes the squared absolute value of a double-precision floating-point\n `x`.\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 @@ -57,6 +57,7 @@ arrayview2iteratorRight,"arrayview2iteratorRight( src[, begin[, end]][, mapFcn[,
AsyncIteratorSymbol,"AsyncIteratorSymbol"
azeros,"azeros( length[, dtype] )"
azerosLike,"azerosLike( x[, dtype] )"
azeroTo,"azeroTo( n[, dtype] )"
bartlettTest,"bartlettTest( ...x[, options] )"
base.abs,"base.abs( x )"
base.abs2,"base.abs2( x )"
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 @@ -57,6 +57,7 @@ arrayview2iteratorRight,"arrayview2iteratorRight( src:ArrayLikeObject[, begin:in
AsyncIteratorSymbol,"AsyncIteratorSymbol"
azeros,"azeros( length:integer[, dtype:string] )"
azerosLike,"azerosLike( x:TypedArray|Array[, dtype:string] )"
azeroTo,"azeroTo( n:integer[, dtype:string] )"
bartlettTest,"bartlettTest( ...x:Array[, options:Object] )"
base.abs,"base.abs( x:number )"
base.abs2,"base.abs2( x:number )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit b9bc92d

Please sign in to comment.