Reads a complex vector from the stream.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public override Vector<Complex<T>> ReadComplexVector<T>(
bool strict = false
)
Public Overrides Function ReadComplexVector(Of T) (
Optional strict As Boolean = false
) As Vector(Of Complex(Of T))
public:
generic<typename T>
virtual Vector<Complex<T>>^ ReadComplexVector(
bool strict = false
) override
abstract ReadComplexVector :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<Complex<'T>>
override ReadComplexVector :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<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:
VectorComplexTThe vector that was read from the stream.
Numerical Libraries
Supported in: 6.0
Reference