Skip to content

pycauset.ComplexFloat16Matrix

A memory-mapped dense matrix storing complex numbers in complex_float16 format (two-plane float16: real + imaginary). Inherits from MatrixBase.

Constructor

pycauset.ComplexFloat16Matrix(n: int)
pycauset.ComplexFloat16Matrix(rows: int, cols: int)
pycauset.ComplexFloat16Matrix(array: numpy.ndarray)

When constructed from a NumPy array, the array must be rank-2 with dtype complex64 or complex128.

Notes

Complex support is limited to complex floats. Supported operations are gated by the support matrix (see documentation/internals/DType System.md).