Reads all vectors from a Matlab® data file.
Namespace:
Extreme.Data.Matlab
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Dictionary<string, Vector<T>> ReadAllVectors<T>(
string path,
bool strict
)
Public Shared Function ReadAllVectors(Of T) (
path As String,
strict As Boolean
) As Dictionary(Of String, Vector(Of T))
public:
generic<typename T>
static Dictionary<String^, Vector<T>^>^ ReadAllVectors(
String^ path,
bool strict
)
static member ReadAllVectors :
path : string *
strict : bool -> Dictionary<string, Vector<'T>>
Parameters
- path
- Type: SystemString
The file to read from. - strict
- 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 file using their name as the key.
Reference