Reads a complex vector from the stream.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.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.
Reference