Reads all vectors from a stream.
Namespace: Extreme.Data.MatlabAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public static Dictionary<string, Vector<T>> ReadAllVectors<T>(
Stream stream,
bool strict = true
)
Public Shared Function ReadAllVectors(Of T) (
stream As Stream,
Optional strict As Boolean = true
) As Dictionary(Of String, Vector(Of T))
public:
generic<typename T>
static Dictionary<String^, Vector<T>^>^ ReadAllVectors(
Stream^ stream,
bool strict = true
)
static member ReadAllVectors :
stream : Stream *
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Dictionary<string, Vector<'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,
VectorTA dictionary containing all the vectors
read from the stream using their name as the key.
Numerical Libraries
Supported in: 6.0
Reference