Reads a complex vector from a file in fixed-width text format.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Vector<Complex<T>> ReadComplexVector<T>(
string path,
int[] columnBreaks
)
Public Shared Function ReadComplexVector(Of T) (
path As String,
columnBreaks As Integer()
) As Vector(Of Complex(Of T))
public:
generic<typename T>
static Vector<Complex<T>>^ ReadComplexVector(
String^ path,
array<int>^ columnBreaks
)
static member ReadComplexVector :
path : string *
columnBreaks : int[] -> Vector<Complex<'T>>
Parameters
- path
- Type: SystemString
The path to the file. - columnBreaks
- Type: SystemInt32
An integer array containing the zero-based indexes of the column breaks on each row.
Type Parameters
- T
- The element type of the vector.
Return Value
Type:
VectorComplexTThe data frame that was read from the file
pointed to by
path.
The element type of the stored vector does not have
to match the element type of the returned vector.
However, casting values from this type to
type T must succeed.
Reference