We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6540f29 commit 9a4ffa0Copy full SHA for 9a4ffa0
lib/node_modules/@stdlib/ndarray/base/dtype-desc/lib/table.js
@@ -32,6 +32,7 @@ function table() {
32
33
'bool': 'boolean',
34
35
+ 'complex32': 'half-precision floating-point complex number',
36
'complex64': 'single-precision floating-point complex number',
37
'complex128': 'double-precision floating-point complex number',
38
lib/node_modules/@stdlib/ndarray/base/dtype-desc/test/test.js
@@ -30,6 +30,7 @@ var dtypeDesc = require( './../lib' );
30
var DTYPES = [
31
'float64',
'float32',
+ 'float16',
'int8',
'uint8',
'uint8c',
@@ -41,6 +42,7 @@ var DTYPES = [
41
42
'uint64',
43
'binary',
44
'generic',
45
+ 'complex32',
46
'complex64',
47
'complex128',
48
'bool'
0 commit comments