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