Skip to content

Commit 2477e0e

Browse files
committed
Add typedefs
1 parent 99e6a6f commit 2477e0e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tools/docs/jsdoc/typedefs/arrays.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,21 @@
143143
*
144144
* @typedef {NonNegativeNumericArray} ProbabilityArray
145145
*/
146+
147+
/**
148+
* A 64-bit complex number array, in which the real and imaginary components are each stored as single-precision floating-point numbers.
149+
*
150+
* @typedef {Complex64Array} Complex64Array
151+
*/
152+
153+
/**
154+
* A 128-bit complex number array, in which the real and imaginary components are each stored as double-precision floating-point numbers.
155+
*
156+
* @typedef {Complex128Array} Complex128Array
157+
*/
158+
159+
/**
160+
* A complex number array.
161+
*
162+
* @typedef {(Complex64Array|Complex128Array)} ComplexArray
163+
*/

0 commit comments

Comments
 (0)