Writes a complex matrix to a file in delimited text format.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public static void Write<T>(
string path,
Matrix<Complex<T>> matrix,
DelimitedTextOptions options = null
)
Public Shared Sub Write(Of T) (
path As String,
matrix As Matrix(Of Complex(Of T)),
Optional options As DelimitedTextOptions = Nothing
)
public:
generic<typename T>
static void Write(
String^ path,
Matrix<Complex<T>>^ matrix,
DelimitedTextOptions^ options = nullptr
)
static member Write :
path : string *
matrix : Matrix<Complex<'T>> *
?options : DelimitedTextOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- path
- Type: SystemString
The path to the file. - matrix
- Type: Extreme.MathematicsMatrixComplexT
The matrix to write 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.
Numerical Libraries
Supported in: 6.0
Reference