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
Complex64Array.prototype.values,"var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\nvar it = arr.values();\nvar v = it.next().value\nvar re = realf( v )\nvar im = imagf( v )\nv = it.next().value\nre = realf( v )\nim = imagf( v )\nvar bool = it.next().done\n"
2705
2706
Complex64Array.prototype.with,"var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\nvar out = arr.with( 1, new Complex64( 3.0, -3.0 ) )\nvar z = out.get( 1 )\nvar re = realf( z )\nvar im = imagf( z )\n"
2707
+
Complex128.name,"var str = Complex128.name\n"
2706
2708
Complex128.BYTES_PER_ELEMENT,"var s = Complex128.BYTES_PER_ELEMENT\n"
2707
2709
Complex128.prototype.BYTES_PER_ELEMENT,"var z = new Complex128( 5.0, 3.0 )\nvar s = z.BYTES_PER_ELEMENT\n"
2708
2710
Complex128.prototype.byteLength,"var z = new Complex128( 5.0, 3.0 )\nvar s = z.byteLength\n"
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/repl/help/data/data.csv
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2654,7 +2654,8 @@ codePointAt,"\ncodePointAt( str, idx[, backward] )\n Returns a Unicode code p
2654
2654
commonKeys,"\ncommonKeys( obj1, obj2[, ...obj] )\n Returns the common own property names of two or more objects.\n\n Parameters\n ----------\n obj1: any\n First object.\n\n obj2: any\n Second object.\n\n obj: ...any (optional)\n Additional objects.\n\n Returns\n -------\n out: Array<string>\n Common keys of objects.\n\n Examples\n --------\n > var obj1 = { 'a': 1, 'b': 2 };\n > var obj2 = { 'a': 1, 'b': 2, 'c': 3, 'd': 4 };\n > var keys = commonKeys( obj1, obj2 )\n [ 'a', 'b' ]\n\n See Also\n --------\n commonKeysIn, objectKeys"
2655
2655
commonKeysIn,"\ncommonKeysIn( obj1, obj2[, ...obj] )\n Returns the common own and inherited property names of two or more objects.\n\n Parameters\n ----------\n obj1: any\n First object.\n\n obj2: any\n Second object.\n\n obj: ...any (optional)\n Additional objects.\n\n Returns\n -------\n out: Array<string>\n Common keys.\n\n Examples\n --------\n > var obj1 = { 'a': 1, 'b': 2 };\n > var obj2 = { 'a': 1, 'b': 2, 'c': 3, 'd': 4 };\n > var keys = commonKeysIn( obj1, obj2 )\n [ 'a', 'b' ]\n\n See Also\n --------\n commonKeys, keysIn"
2656
2656
complex,"\ncomplex( real, imag[, dtype] )\n Creates a complex number.\n\n The function supports the following data types:\n\n - float64\n - float32\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n dtype: string (optional)\n Data type. Default: 'float64'.\n\n Returns\n -------\n z: Complex\n Complex number.\n\n Examples\n --------\n > var z = complex( 5.0, 3.0, 'float64' )\n <Complex128>\n > z = complex( 5.0, 3.0, 'float32' )\n <Complex64>\n\n See Also\n --------\n Complex128, Complex64\n"
2657
-
Complex64,"\nComplex64( real, imag )\n 64-bit complex number constructor.\n\n Both the real and imaginary components are stored as single-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex64\n 64-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > z.re\n 5.0\n > z.im\n 3.0\n\n\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128\n"
2657
+
Complex64,"\nComplex64( real, imag )\n 64-bit complex number constructor.\n\n Both the real and imaginary components are stored as single-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex64\n 64-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > z.re\n 5.0\n > z.im\n 3.0\n\n\nComplex64.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex64.name\n 'Complex64'\n\n\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128\n"
Complex64.BYTES_PER_ELEMENT,"\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4"
2659
2660
Complex64.prototype.BYTES_PER_ELEMENT,"\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4"
2660
2661
Complex64.prototype.byteLength,"\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128"
Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Serializes an array as a string.\n\n Returns\n -------\n str: string\n String serialization of the array.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, 1.0, 2.0, -2.0, 3.0, 3.0 ] )\n <Complex64Array>\n > var str = arr.toString()\n '1 + 1i,2 - 2i,3 + 3i'"
2704
2705
Complex64Array.prototype.values,"\nComplex64Array.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n\n Returns\n -------\n iterator: Iterator\n Iterator for iterating over array values.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\n <Complex64Array>\n > var it = arr.values();\n > var v = it.next().value\n <Complex64>\n > var re = realf( v )\n 1.0\n > var im = imagf( v )\n -1.0\n > v = it.next().value\n <Complex64>\n > re = realf( v )\n 2.0\n > im = imagf( v )\n -2.0\n > var bool = it.next().done\n true"
2705
2706
Complex64Array.prototype.with,"\nComplex64Array.prototype.with( index, value )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n\n Parameters\n ----------\n index: integer\n Element index.\n \n value: Complex64\n Element value. \n\n Returns\n -------\n out: Complex64Array\n New typed array.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\n <Complex64Array>\n > var out = arr.with( 1, new Complex64( 3.0, -3.0 ) )\n <Complex64Array>\n > var z = out.get( 1 )\n <Complex64>\n > var re = realf( z )\n 3.0\n > var im = imagf( z )\n -3.0\n\n\n See Also\n --------\n Complex128Array, complex, Complex64"
2706
-
Complex128,"\nComplex128( real, imag )\n 128-bit complex number constructor.\n\n Both the real and imaginary components are stored as double-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex128\n 128-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64\n"
2707
+
Complex128,"\nComplex128( real, imag )\n 128-bit complex number constructor.\n\n Both the real and imaginary components are stored as double-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex128\n 128-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n\nComplex128.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex128.name\n 'Complex128'\n\n\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64\n"
Complex128.BYTES_PER_ELEMENT,"\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8"
2708
2710
Complex128.prototype.BYTES_PER_ELEMENT,"\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8"
2709
2711
Complex128.prototype.byteLength,"\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64"
Complex64.BYTES_PER_ELEMENT,"\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n"
2659
2660
Complex64.prototype.BYTES_PER_ELEMENT,"\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n"
2660
2661
Complex64.prototype.byteLength,"\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n"
@@ -2704,6 +2705,7 @@ Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Se
2704
2705
Complex64Array.prototype.values,"\nComplex64Array.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n"
2705
2706
Complex64Array.prototype.with,"\nComplex64Array.prototype.with( index, value )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n"
2706
2707
Complex128,"\nComplex128( real:number, imag:number )\n 128-bit complex number constructor.\n"
0 commit comments