Reads a complex matrix from the stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public abstract Matrix<Complex<T>> ReadComplexMatrix<T>(
bool strict
)
Public MustOverride Function ReadComplexMatrix(Of T) (
strict As Boolean
) As Matrix(Of Complex(Of T))
public:
generic<typename T>
virtual Matrix<Complex<T>>^ ReadComplexMatrix(
bool strict
) abstract
abstract ReadComplexMatrix :
strict : bool -> Matrix<Complex<'T>>
Parameters
- strict
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
- The type of the real and imaginary parts
of the element type.
Return Value
Type:
MatrixComplexTThe matrix that was read from the stream.
Reference