Writes the two-dimensional array with the specified name to the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public void Write<T>(
Matrix<T> matrix,
string name
)
Public Sub Write(Of T) (
matrix As Matrix(Of T),
name As String
)
public:
generic<typename T>
void Write(
Matrix<T>^ matrix,
String^ name
)
member Write :
matrix : Matrix<'T> *
name : string -> unit
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
The matrix to write to the data stream. - name
- Type: SystemString
The name of the matrix in the data stream.
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
A matrix containing the data.
Reference