File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,25 @@ where
102
102
- **f4 **: single-precision (32-bit) floating-point number (i.e., ``float32 ``)
103
103
- **f8 **: double-precision (64-bit) floating-point number (i.e., ``float64 ``)
104
104
105
+ Complex floating-point type promotion table
106
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
107
+
108
+ +---------+-----+-----+
109
+ | | c8 | c16 |
110
+ +=========+=====+=====+
111
+ | **c8 ** | c8 | c16 |
112
+ +---------+-----+-----+
113
+ | **c16 ** | c16 | c16 |
114
+ +---------+-----+-----+
115
+
116
+ where
117
+
118
+ - **c8 **: single-precision complex floating-point number (i.e., ``complex64 ``)
119
+ composed of two single-precision (32-bit) floating-point numbers
120
+ - **c16 **: double-precision complex floating-point number (i.e., ``complex128 ``)
121
+ composed of two double-precision (64-bit) floating-point numbers
122
+
123
+
105
124
Notes
106
125
~~~~~
107
126
You can’t perform that action at this time.
0 commit comments