Reads the specified matrices from a stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, Matrix<T>> ReadMatrices<T>(
Stream stream,
IEnumerable<string> names
)
Public Shared Function ReadMatrices(Of T) (
stream As Stream,
names As IEnumerable(Of String)
) As Dictionary(Of String, Matrix(Of T))
public:
generic<typename T>
static Dictionary<String^, Matrix<T>^>^ ReadMatrices(
Stream^ stream,
IEnumerable<String^>^ names
)
static member ReadMatrices :
stream : Stream *
names : IEnumerable<string> -> Dictionary<string, Matrix<'T>>
Parameters
- stream
- Type: System.IOStream
The stream to read from. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the matrices to read.
Type Parameters
- T
Return Value
Type:
DictionaryString,
MatrixTA dictionary containing the matrices
read from the stream using their name as the key.
Reference