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>(
Dictionary<string, Matrix<T>> values
)
Public Sub Write(Of T) (
values As Dictionary(Of String, Matrix(Of T))
)
public:
generic<typename T>
void Write(
Dictionary<String^, Matrix<T>^>^ values
)
member Write :
values : Dictionary<string, Matrix<'T>> -> unit
Parameters
- values
- Type: System.Collections.GenericDictionaryString, MatrixT
A dictionary that maps names to
matrices.
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