Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ buffer2json,"@stdlib/buffer-to-json"
BYTE_ORDER,"@stdlib/os-byte-order"
camelcase,"@stdlib/string-camelcase"
capitalize,"@stdlib/string-capitalize"
capitalizeKeys,"@stdlib/utils-capitalize-keys"
capitalizeKeys,"@stdlib/object-capitalize-keys"
CATALAN,"@stdlib/constants-float64-catalan"
CBRT_EPS,"@stdlib/constants-float64-cbrt-eps"
CDC_NCHS_US_BIRTHS_1969_1988,"@stdlib/datasets-cdc-nchs-us-births-1969-1988"
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ base.cfloor,"var v = base.cfloor( new Complex128( 5.5, 3.3 ) )\nvar re = real( v
base.cfloorn,"var v = base.cfloorn( new Complex128( 5.555, -3.333 ), -2 )\nvar re = real( v )\nvar im = imag( v )\n"
base.cidentity,"var v = base.cidentity( new Complex128( -1.0, 2.0 ) )\nvar re = real( v )\nvar img = imag( v )\n"
base.cidentityf,"var v = base.cidentityf( new Complex64( -1.0, 2.0 ) )\nvar re = realf( v )\nvar img = imagf( v )\n"
base.cinv,"var v = base.cinv( new Complex128( 2.0, 4.0 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.cinvf,"var v = base.cinvf( new Complex64( 2.0, 4.0 ) )\nvar re = realf( v )\nvar im = imagf( v )\n"
base.cinv,"var v = base.cinv( new Complex128( 2.0, 4.0 ) )\n"
base.cinvf,"var v = base.cinvf( new Complex64( 2.0, 4.0 ) )\n"
base.clamp,"var y = base.clamp( 3.14, 0.0, 5.0 )\ny = base.clamp( -3.14, 0.0, 5.0 )\ny = base.clamp( 3.14, 0.0, 3.0 )\ny = base.clamp( -0.0, 0.0, 5.0 )\ny = base.clamp( 0.0, -3.14, -0.0 )\ny = base.clamp( NaN, 0.0, 5.0 )\n"
base.clampf,"var y = base.clampf( 3.14, 0.0, 5.0 )\ny = base.clampf( -3.14, 0.0, 5.0 )\ny = base.clampf( 3.14, 0.0, 3.0 )\ny = base.clampf( -0.0, 0.0, 5.0 )\ny = base.clampf( 0.0, -3.14, -0.0 )\ny = base.clampf( NaN, 0.0, 5.0 )\n"
base.cmul,"var z1 = new Complex128( 5.0, 3.0 )\nvar z2 = new Complex128( -2.0, 1.0 )\nvar out = base.cmul( z1, z2 )\nvar re = real( out )\nvar im = imag( out )\n"
Expand Down Expand Up @@ -278,7 +278,7 @@ base.coversin,"var y = base.coversin( 3.14 )\ny = base.coversin( -4.2 )\ny = bas
base.cphase,"var phi = base.cphase( new Complex128( 5.0, 3.0 ) )\n"
base.cpolar,"var out = base.cpolar( new Complex128( 5.0, 3.0 ) )\n"
base.cpolar.assign,"var out = new Float64Array( 2 );\nvar v = base.cpolar.assign( new Complex128( 5.0, 3.0 ), out, 1, 0 )\nvar bool = ( v === out )\n"
base.cround,"var v = base.cround( new Complex128( 5.5, 3.3 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.cround,"var v = base.cround( new Complex128( 5.5, 3.3 ) )\n"
base.croundn,"var v = base.croundn( new Complex128( 5.555, -3.336 ), -2 )\n"
base.csc,"var y = base.csc( 0.0 )\ny = base.csc( PI/2.0 )\ny = base.csc( -PI/6.0 )\ny = base.csc( NaN )\n"
base.cscd,"var y = base.cscd( 1.0 )\ny = base.cscd( PI )\ny = base.cscd( -PI )\ny = base.cscd( NaN )\n"
Expand Down Expand Up @@ -1673,8 +1673,8 @@ base.strided.binaryDtypeSignatures,"var dt = strided.dataTypes();\nvar out = bas
base.strided.binarySignatureCallbacks,"var dt = strided.dataTypes();\nvar sigs = base.strided.binaryDtypeSignatures( dt, dt, dt );\nvar t = {\n 'default': base.add,\n 'complex64': base.caddf,\n 'complex128': base.cadd\n };\nvar out = base.strided.binarySignatureCallbacks( t, sigs )\n"
base.strided.ccopy,"var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );\nvar y = new Complex64Array( [ 6.0, 7.0, 8.0, 9.0 ] );\nbase.strided.ccopy( x.length, x, 1, y, 1 )\nx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\ny = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.ccopy( 2, x, -2, y, 1 )\nvar x0 = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\nvar y0 = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nvar x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex64Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.ccopy( 2, x1, -2, y1, 1 )\ny0\n"
base.strided.ccopy.ndarray,"var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );\nvar y = new Complex64Array( [ 6.0, 7.0, 8.0, 9.0 ] );\nbase.strided.ccopy.ndarray( x.length, x, 1, 0, y, 1, 0 )\nx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\ny = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.ccopy.ndarray( 2, x, 2, 1, y, -1, y.length-1 )\n"
base.strided.cmap,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex64Array( xbuf );\nvar y = new Complex64Array( x.length );\nbase.strided.cmap( x.length, x, 1, y, 1, base.cidentityf );\nvar v = y.get( 0 )\nvar re = real( v )\nvar im = imag( v )\ny = new Complex64Array( x.length );\nbase.strided.cmap( 2, x, 2, y, -1, base.cidentityf );\nv = y.get( 0 )\nre = real( v )\nim = imag( v )\nvar x0 = new Complex64Array( xbuf );\nvar y0 = new Complex64Array( x0.length );\nvar x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex64Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.cmap( 2, x1, -2, y1, 1, base.cidentityf );\nv = y1.get( 0 )\nre = real( v )\nim = imag( v )\n"
base.strided.cmap.ndarray,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex64Array( xbuf );\nvar y = new Complex64Array( x.length );\nbase.strided.cmap.ndarray( x.length, x, 1, 0, y, 1, 0, base.cidentityf );\nvar v = y.get( 0 )\nvar re = real( v )\nvar im = imag( v )\nx = new Complex64Array( xbuf );\ny = new Complex64Array( x.length );\nbase.strided.cmap.ndarray( 2, x, 2, 1, y, -1, y.length-1, base.cidentityf );\nv = y.get( y.length-1 )\nre = real( v )\nim = imag( v )\n"
base.strided.cmap,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex64Array( xbuf );\nvar y = new Complex64Array( x.length );\nbase.strided.cmap( x.length, x, 1, y, 1, base.cidentityf );\nvar v = y.get( 0 )\ny = new Complex64Array( x.length );\nbase.strided.cmap( 2, x, 2, y, -1, base.cidentityf );\nv = y.get( 0 )\nvar x0 = new Complex64Array( xbuf );\nvar y0 = new Complex64Array( x0.length );\nvar x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex64Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.cmap( 2, x1, -2, y1, 1, base.cidentityf );\nv = y1.get( 0 )\n"
base.strided.cmap.ndarray,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex64Array( xbuf );\nvar y = new Complex64Array( x.length );\nbase.strided.cmap.ndarray( x.length, x, 1, 0, y, 1, 0, base.cidentityf );\nvar v = y.get( 0 )\nx = new Complex64Array( xbuf );\ny = new Complex64Array( x.length );\nbase.strided.cmap.ndarray( 2, x, 2, 1, y, -1, y.length-1, base.cidentityf );\nv = y.get( y.length-1 )\n"
base.strided.cswap,"var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );\nvar y = new Complex64Array( [ 6.0, 7.0, 8.0, 9.0 ] );\nbase.strided.cswap( x.length, x, 1, y, 1 );\nx\ny\nx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\ny = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.cswap( 2, x, -2, y, 1 );\nx\ny\nvar x0 = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\nvar y0 = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nvar x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex64Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.cswap( 2, x1, -2, y1, 1 );\nx0\ny0\n"
base.strided.cswap.ndarray,"var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );\nvar y = new Complex64Array( [ 6.0, 7.0, 8.0, 9.0 ] );\nbase.strided.cswap.ndarray( x.length, x, 1, 0, y, 1, 0 );\nx\ny\nx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );\ny = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.cswap.ndarray( 2, x, 2, 1, y, -1, y.length-1 );\nx\ny\n"
base.strided.cumax,"var x = [ 1.0, -2.0, 2.0 ];\nvar y = [ 0.0, 0.0, 0.0 ];\nbase.strided.cumax( x.length, x, 1, y, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\ny = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];\nbase.strided.cumax( 3, x, 2, y, 2 )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar y0 = new Float64Array( x0.length );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Float64Array( y0.buffer, y0.BYTES_PER_ELEMENT*3 );\nbase.strided.cumax( 3, x1, 2, y1, 1 )\ny0\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

Loading
Loading