Writes a matrix from a stream in delimited text format.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16328.0)
public static void Write<T>(
Stream stream,
Matrix<T> matrix,
TextOptions options = null
)
Public Shared Sub Write(Of T) (
stream As Stream,
matrix As Matrix(Of T),
Optional options As TextOptions = Nothing
)
public:
generic<typename T>
static void Write(
Stream^ stream,
Matrix<T>^ matrix,
TextOptions^ options = nullptr
)
static member Write :
stream : Stream *
matrix : Matrix<'T> *
?options : TextOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- stream
- Type: System.IOStream
A stream. - matrix
- Type: Extreme.MathematicsMatrixT
The matrix to write to the stream. - options (Optional)
- Type: Extreme.DataTextOptions
A TextOptions 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