Reads a complex matrix from a file in delimited text format.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Matrix<Complex<T>> ReadComplexMatrix<T>(
string path,
DelimitedTextOptions options = null
)
Public Shared Function ReadComplexMatrix(Of T) (
path As String,
Optional options As DelimitedTextOptions = Nothing
) As Matrix(Of Complex(Of T))
public:
generic<typename T>
static Matrix<Complex<T>>^ ReadComplexMatrix(
String^ path,
DelimitedTextOptions^ options = nullptr
)
static member ReadComplexMatrix :
path : string *
?options : DelimitedTextOptions
(* Defaults:
let _options = defaultArg options null
*)
-> Matrix<Complex<'T>>
Parameters
- path
- Type: SystemString
The path to the file. - options (Optional)
- Type: Extreme.Data.TextDelimitedTextOptions
A DelimitedTextOptions object
that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
MatrixComplexTThe data frame that was read from the file
pointed to by
path.
The element type of the stored matrix does not have
to match the element type of the returned matrix.
However, casting values from this type to
type T must succeed.
Reference