Expand description
Complex-valued Arrow/ndarray bridge utilities.
This module defines custom complex extension types:
ndarrow.complex32with storageFixedSizeList<Float32>(2)ndarrow.complex64with storageFixedSizeList<Float64>(2)
Each list element stores [real, imag] in row-major order.
Structs§
- Complex32
Extension - Extension type descriptor for
ndarrow.complex32. - Complex64
Extension - Extension type descriptor for
ndarrow.complex64.
Functions§
- array1_
complex32_ to_ extension - Converts an owned
Array1<Complex32>intondarrow.complex32storage. - array1_
complex64_ to_ extension - Converts an owned
Array1<Complex64>intondarrow.complex64storage. - complex32_
as_ array_ view1 - Converts
ndarrow.complex32storage into anArrayView1<Complex32>. - complex64_
as_ array_ view1 - Converts
ndarrow.complex64storage into anArrayView1<Complex64>.