DelimitedTextStream.ReadComplexVector<T> Method

Reads a complex vector from the stream.

Definition

Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public override Vector<Complex<T>> ReadComplexVector<T>(
	bool strict = false
)

Parameters

strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false).

Type Parameters

T
The type of the real and imaginary parts of the element type.

Return Value

Vector<Complex<T>>
The vector that was read from the stream.

See Also