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 Nov 19, 2023
1 parent d7b892a commit a3c9d76
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 14 deletions.
3 changes: 3 additions & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ base.deg2rad,"var r = base.deg2rad( 90.0 )\nr = base.deg2rad( -45.0 )\nr = base.
base.deg2radf,"var r = base.deg2radf( 90.0 )\nr = base.deg2radf( -45.0 )\nr = base.deg2radf( NaN )\n"
base.digamma,"var y = base.digamma( -2.5 )\ny = base.digamma( 1.0 )\ny = base.digamma( 10.0 )\ny = base.digamma( NaN )\ny = base.digamma( -1.0 )\n"
base.diracDelta,"var y = base.diracDelta( 3.14 )\ny = base.diracDelta( 0.0 )\n"
base.div,"var v = base.div( -1.0, 5.0 )\nv = base.div( 2.0, 5.0 )\nv = base.div( 0.0, 5.0 )\nv = base.div( -0.0, 5.0 )\nv = base.div( NaN, NaN )\n"
base.divf,"var v = base.divf( -1.0, 5.0 )\nv = base.divf( 2.0, 5.0 )\nv = base.divf( 0.0, 5.0 )\nv = base.divf( -0.0, 5.0 )\nv = base.divf( NaN, NaN )\n"
base.dists.arcsine.Arcsine,"var arcsine = base.dists.arcsine.Arcsine( 0.0, 1.0 );\narcsine.a\narcsine.b\narcsine.entropy\narcsine.kurtosis\narcsine.mean\narcsine.median\narcsine.mode\narcsine.skewness\narcsine.stdev\narcsine.variance\narcsine.cdf( 0.8 )\narcsine.logcdf( 0.8 )\narcsine.logpdf( 0.4 )\narcsine.pdf( 0.8 )\narcsine.quantile( 0.8 )\n"
base.dists.arcsine.cdf,"var y = base.dists.arcsine.cdf( 9.0, 0.0, 10.0 )\ny = base.dists.arcsine.cdf( 0.5, 0.0, 2.0 )\ny = base.dists.arcsine.cdf( PINF, 2.0, 4.0 )\ny = base.dists.arcsine.cdf( NINF, 2.0, 4.0 )\ny = base.dists.arcsine.cdf( NaN, 0.0, 1.0 )\ny = base.dists.arcsine.cdf( 0.0, NaN, 1.0 )\ny = base.dists.arcsine.cdf( 0.0, 0.0, NaN )\ny = base.dists.arcsine.cdf( 2.0, 1.0, 0.0 )\n"
base.dists.arcsine.cdf.factory,"var mycdf = base.dists.arcsine.cdf.factory( 0.0, 10.0 );\nvar y = mycdf( 0.5 )\ny = mycdf( 8.0 )\n"
Expand Down Expand Up @@ -830,6 +832,7 @@ base.expm1rel,"var y = base.expm1rel( 0.0 )\ny = base.expm1rel( 1.0 )\ny = base.
base.exponent,"var exponent = base.exponent( 3.14e-307 )\nexponent = base.exponent( -3.14 )\nexponent = base.exponent( 0.0 )\nexponent = base.exponent( NaN )\n"
base.exponentf,"var exponent = base.exponentf( base.float64ToFloat32( 3.14e34 ) )\nexponent = base.exponentf( base.float64ToFloat32( 3.14e-34 ) )\nexponent = base.exponentf( base.float64ToFloat32( -3.14 ) )\nexponent = base.exponentf( 0.0 )\nexponent = base.exponentf( NaN )\n"
base.factorial,"var y = base.factorial( 3.0 )\ny = base.factorial( -1.5 )\ny = base.factorial( -0.5 )\ny = base.factorial( 0.5 )\ny = base.factorial( -10.0 )\ny = base.factorial( 171.0 )\ny = base.factorial( NaN )\n"
base.factorial2,"var y = base.factorial2( 3 )\ny = base.factorial2( 5 )\ny = base.factorial2( 6 )\ny = base.factorial2( 301 )\ny = base.factorial2( NaN )\n"
base.factorialln,"var y = base.factorialln( 3.0 )\ny = base.factorialln( 2.4 )\ny = base.factorialln( -1.0 )\ny = base.factorialln( -1.5 )\ny = base.factorialln( NaN )\n"
base.fallingFactorial,"var v = base.fallingFactorial( 0.9, 5 )\nv = base.fallingFactorial( -9.0, 3 )\nv = base.fallingFactorial( 0.0, 2 )\nv = base.fallingFactorial( 3.0, -2 )\n"
base.fibonacci,"var y = base.fibonacci( 0 )\ny = base.fibonacci( 1 )\ny = base.fibonacci( 2 )\ny = base.fibonacci( 3 )\ny = base.fibonacci( 4 )\ny = base.fibonacci( 79 )\ny = base.fibonacci( 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.

15 changes: 9 additions & 6 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.

3 changes: 3 additions & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ base.deg2rad,"\nbase.deg2rad( x:number )\n Converts an angle from degrees to
base.deg2radf,"\nbase.deg2radf( x:number )\n Converts an angle from degrees to radians (single-precision).\n"
base.digamma,"\nbase.digamma( x:number )\n Evaluates the digamma function.\n"
base.diracDelta,"\nbase.diracDelta( x:number )\n Evaluates the Dirac delta function.\n"
base.div,"\nbase.div( x:number, y:number )\n Divides two double-precision floating-point numbers `x` and `y`.\n"
base.divf,"\nbase.divf( x:number, y:number )\n Divides two single-precision floating-point numbers `x` and `y`.\n"
base.dists.arcsine.Arcsine,"\nbase.dists.arcsine.Arcsine( [a:number, b:number] )\n Returns an arcsine distribution object.\n"
base.dists.arcsine.cdf,"\nbase.dists.arcsine.cdf( x:number, a:number, b:number )\n Evaluates the cumulative distribution function (CDF) for an arcsine\n distribution with minimum support `a` and maximum support `b` at a value\n `x`.\n"
base.dists.arcsine.cdf.factory,"\nbase.dists.arcsine.cdf.factory( a:number, b:number )\n Returns a function for evaluating the cumulative distribution function (CDF)\n of an arcsine distribution with minimum support `a` and maximum support `b`.\n"
Expand Down Expand Up @@ -830,6 +832,7 @@ base.expm1rel,"\nbase.expm1rel( x:number )\n Relative error exponential.\n"
base.exponent,"\nbase.exponent( x:number )\n Returns an integer corresponding to the unbiased exponent of a double-\n precision floating-point number.\n"
base.exponentf,"\nbase.exponentf( x:float )\n Returns an integer corresponding to the unbiased exponent of a single-\n precision floating-point number.\n"
base.factorial,"\nbase.factorial( x:number )\n Evaluates the factorial of `x`.\n"
base.factorial2,"\nbase.factorial2( n:number )\n Evaluates the double factorial of `n`.\n"
base.factorialln,"\nbase.factorialln( x:number )\n Evaluates the natural logarithm of the factorial of `x`.\n"
base.fallingFactorial,"\nbase.fallingFactorial( x:number, n:integer )\n Computes the falling factorial of `x` and `n`.\n"
base.fibonacci,"\nbase.fibonacci( n:integer )\n Computes the nth Fibonacci number.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ base.deg2rad,"base.deg2rad( x )"
base.deg2radf,"base.deg2radf( x )"
base.digamma,"base.digamma( x )"
base.diracDelta,"base.diracDelta( x )"
base.div,"base.div( x, y )"
base.divf,"base.divf( x, y )"
base.dists.arcsine.Arcsine,"base.dists.arcsine.Arcsine( [a, b] )"
base.dists.arcsine.cdf,"base.dists.arcsine.cdf( x, a, b )"
base.dists.arcsine.cdf.factory,"base.dists.arcsine.cdf.factory( a, b )"
Expand Down Expand Up @@ -830,6 +832,7 @@ base.expm1rel,"base.expm1rel( x )"
base.exponent,"base.exponent( x )"
base.exponentf,"base.exponentf( x )"
base.factorial,"base.factorial( x )"
base.factorial2,"base.factorial2( n )"
base.factorialln,"base.factorialln( x )"
base.fallingFactorial,"base.fallingFactorial( x, n )"
base.fibonacci,"base.fibonacci( n )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ base.deg2rad,"base.deg2rad( x:number )"
base.deg2radf,"base.deg2radf( x:number )"
base.digamma,"base.digamma( x:number )"
base.diracDelta,"base.diracDelta( x:number )"
base.div,"base.div( x:number, y:number )"
base.divf,"base.divf( x:number, y:number )"
base.dists.arcsine.Arcsine,"base.dists.arcsine.Arcsine( [a:number, b:number] )"
base.dists.arcsine.cdf,"base.dists.arcsine.cdf( x:number, a:number, b:number )"
base.dists.arcsine.cdf.factory,"base.dists.arcsine.cdf.factory( a:number, b:number )"
Expand Down Expand Up @@ -830,6 +832,7 @@ base.expm1rel,"base.expm1rel( x:number )"
base.exponent,"base.exponent( x:number )"
base.exponentf,"base.exponentf( x:float )"
base.factorial,"base.factorial( x:number )"
base.factorial2,"base.factorial2( n:number )"
base.factorialln,"base.factorialln( x:number )"
base.fallingFactorial,"base.fallingFactorial( x:number, n:integer )"
base.fibonacci,"base.fibonacci( n:integer )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit a3c9d76

Please sign in to comment.