Writes matrices with the specified names to the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public void Write<T>(
IEnumerable<Matrix<T>> values,
IEnumerable<string> names
)
Public Sub Write(Of T) (
values As IEnumerable(Of Matrix(Of T)),
names As IEnumerable(Of String)
)
public:
generic<typename T>
void Write(
IEnumerable<Matrix<T>^>^ values,
IEnumerable<String^>^ names
)
member Write :
values : IEnumerable<Matrix<'T>> *
names : IEnumerable<string> -> unit
Parameters
- values
- Type: System.Collections.GenericIEnumerableMatrixT
A sequence of matrices to write. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the matrices to write.
Type Parameters
- T
- The element type of the matrices.
Return Value
Type:
A dictionary containing the matrices
read from the data stream using their name as the key.
Reference