Reads a complex matrix from the stream.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public override Matrix<Complex<T>> ReadComplexMatrix<T>(
bool strict = false
)
Public Overrides Function ReadComplexMatrix(Of T) (
Optional strict As Boolean = false
) As Matrix(Of Complex(Of T))
public:
generic<typename T>
virtual Matrix<Complex<T>>^ ReadComplexMatrix(
bool strict = false
) override
abstract ReadComplexMatrix :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Matrix<Complex<'T>>
override ReadComplexMatrix :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Matrix<Complex<'T>>
Parameters
- strict (Optional)
- 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