Reads all matrices with the specified element type from the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Dictionary<string, Matrix<T>> ReadAllMatrices<T>(
bool strict = true
)
Public Function ReadAllMatrices(Of T) (
Optional strict As Boolean = true
) As Dictionary(Of String, Matrix(Of T))
public:
generic<typename T>
Dictionary<String^, Matrix<T>^>^ ReadAllMatrices(
bool strict = true
)
member ReadAllMatrices :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Dictionary<string, Matrix<'T>>
Parameters
- strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (, the default), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the matrices.
Return Value
Type:
DictionaryString,
MatrixTA dictionary containing the matrices
read from the data stream using their name as the key.
Reference