Reads the specified matrices from a file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, Matrix<T>> ReadMatrices<T>(
string path,
IEnumerable<string> names,
bool strict = false
)
Public Shared Function ReadMatrices(Of T) (
path As String,
names As IEnumerable(Of String),
Optional strict As Boolean = false
) As Dictionary(Of String, Matrix(Of T))
public:
generic<typename T>
static Dictionary<String^, Matrix<T>^>^ ReadMatrices(
String^ path,
IEnumerable<String^>^ names,
bool strict = false
)
static member ReadMatrices :
path : string *
names : IEnumerable<string> *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Dictionary<string, Matrix<'T>>
Parameters
- path
- Type: SystemString
The file to read from. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the matrices to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
Return Value
Type:
DictionaryString,
MatrixTA dictionary containing the matrices
read from the file using their name as the key.
Reference