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 10, 2024
1 parent 9f9d3c9 commit 033da87
Show file tree
Hide file tree
Showing 12 changed files with 53 additions and 8 deletions.
9 changes: 9 additions & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3947,6 +3947,15 @@ random.array.exponential.seedLength,"var len = random.array.exponential.seedLeng
random.array.exponential.state,"var out = random.array.exponential( 3, 2.0 )\nvar state = random.array.exponential.state\nout = random.array.exponential( 3, 2.0 )\nout = random.array.exponential( 3, 2.0 )\nrandom.array.exponential.state = state;\nout = random.array.exponential( 3, 2.0 )\n"
random.array.exponential.stateLength,"var len = random.array.exponential.stateLength;\n"
random.array.exponential.byteLength,"var sz = random.array.exponential.byteLength;\n"
random.array.f,"var out = random.array.f( 3, 2.0, 5.0 )\n"
random.array.f.assign,"var x = azeros( 3, 'float64' );\nvar out = random.array.f.assign( 2.0, 5.0, x )\nvar bool = ( out === x )\n"
random.array.f.factory,"var fcn = random.array.f.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.f.factory( 2.0, 5.0 );\nout = fcn( 3 )\n"
random.array.f.PRNG,"var prng = random.array.f.PRNG;\n"
random.array.f.seed,"var seed = random.array.f.seed;\n"
random.array.f.seedLength,"var len = random.array.f.seedLength;\n"
random.array.f.state,"var out = random.array.f( 3, 2.0, 5.0 )\nvar state = random.array.f.state\nout = random.array.f( 3, 2.0, 5.0 )\nout = random.array.f( 3, 2.0, 5.0 )\nrandom.array.f.state = state;\nout = random.array.f( 3, 2.0, 5.0 )\n"
random.array.f.stateLength,"var len = random.array.f.stateLength;\n"
random.array.f.byteLength,"var sz = random.array.f.byteLength;\n"
random.array.gamma,"var out = random.array.gamma( 3, 2.0, 5.0 )\n"
random.array.gamma.assign,"var x = azeros( 3, 'float64' );\nvar out = random.array.gamma.assign( 2.0, 5.0, x )\nvar bool = ( out === x )\n"
random.array.gamma.factory,"var fcn = random.array.gamma.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.gamma.factory( 2.0, 5.0 );\nout = fcn( 3 )\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.

9 changes: 9 additions & 0 deletions 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.

9 changes: 9 additions & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3947,6 +3947,15 @@ random.array.exponential.seedLength,"\nrandom.array.exponential.seedLength\n
random.array.exponential.state,"\nrandom.array.exponential.state\n Generator state.\n"
random.array.exponential.stateLength,"\nrandom.array.exponential.stateLength\n Length of generator state.\n"
random.array.exponential.byteLength,"\nrandom.array.exponential.byteLength\n Size (in bytes) of generator state.\n"
random.array.f,"\nrandom.array.f( len:integer, d1:number, d2:number[, options:Object] )\n Returns an array containing pseudorandom numbers drawn from an F\n distribution.\n"
random.array.f.assign,"\nrandom.array.f.assign( d1:number, d2:number, \n out:Array|Float64Array|Float32Array )\n Fills an array with pseudorandom numbers drawn from an F distribution.\n"
random.array.f.factory,"\nrandom.array.f.factory( [d1:number, d2:number, ][options:Object] )\n Returns a function for creating arrays containing pseudorandom numbers drawn\n from an F distribution.\n"
random.array.f.PRNG,"\nrandom.array.f.PRNG\n Underlying pseudorandom number generator.\n"
random.array.f.seed,"\nrandom.array.f.seed\n Pseudorandom number generator seed.\n"
random.array.f.seedLength,"\nrandom.array.f.seedLength\n Length of generator seed.\n"
random.array.f.state,"\nrandom.array.f.state\n Generator state.\n"
random.array.f.stateLength,"\nrandom.array.f.stateLength\n Length of generator state.\n"
random.array.f.byteLength,"\nrandom.array.f.byteLength\n Size (in bytes) of generator state.\n"
random.array.gamma,"\nrandom.array.gamma( len:integer, alpha:number, beta:number[, options:Object] )\n Returns an array containing pseudorandom numbers drawn from a gamma\n distribution.\n"
random.array.gamma.assign,"\nrandom.array.gamma.assign( alpha:number, beta:number, \n out:Array|Float64Array|Float32Array )\n Fills an array with pseudorandom numbers drawn from a gamma distribution.\n"
random.array.gamma.factory,"\nrandom.array.gamma.factory( [alpha:number, beta:number, ][options:Object] )\n Returns a function for creating arrays containing pseudorandom numbers drawn\n from a gamma distribution.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3984,6 +3984,15 @@ random.array.exponential.seedLength,"random.array.exponential.seedLength"
random.array.exponential.state,"random.array.exponential.state"
random.array.exponential.stateLength,"random.array.exponential.stateLength"
random.array.exponential.byteLength,"random.array.exponential.byteLength"
random.array.f,"random.array.f( len, d1, d2[, options] )"
random.array.f.assign,"random.array.f.assign( d1, d2, out )"
random.array.f.factory,"random.array.f.factory( [d1, d2, ][options] )"
random.array.f.PRNG,"random.array.f.PRNG"
random.array.f.seed,"random.array.f.seed"
random.array.f.seedLength,"random.array.f.seedLength"
random.array.f.state,"random.array.f.state"
random.array.f.stateLength,"random.array.f.stateLength"
random.array.f.byteLength,"random.array.f.byteLength"
random.array.gamma,"random.array.gamma( len, alpha, beta[, options] )"
random.array.gamma.assign,"random.array.gamma.assign( alpha, beta, out )"
random.array.gamma.factory,"random.array.gamma.factory( [alpha, beta, ][options] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3984,6 +3984,15 @@ random.array.exponential.seedLength,"random.array.exponential.seedLength"
random.array.exponential.state,"random.array.exponential.state"
random.array.exponential.stateLength,"random.array.exponential.stateLength"
random.array.exponential.byteLength,"random.array.exponential.byteLength"
random.array.f,"random.array.f( len:integer, d1:number, d2:number[, options:Object] )"
random.array.f.assign,"random.array.f.assign( d1:number, d2:number, out:Array|Float64Array|Float32Array )"
random.array.f.factory,"random.array.f.factory( [d1:number, d2:number, ][options:Object] )"
random.array.f.PRNG,"random.array.f.PRNG"
random.array.f.seed,"random.array.f.seed"
random.array.f.seedLength,"random.array.f.seedLength"
random.array.f.state,"random.array.f.state"
random.array.f.stateLength,"random.array.f.stateLength"
random.array.f.byteLength,"random.array.f.byteLength"
random.array.gamma,"random.array.gamma( len:integer, alpha:number, beta:number[, options:Object] )"
random.array.gamma.assign,"random.array.gamma.assign( alpha:number, beta:number, out:Array|Float64Array|Float32Array )"
random.array.gamma.factory,"random.array.gamma.factory( [alpha:number, beta:number, ][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 033da87

Please sign in to comment.