Matlab File.Read All Data Frames Method
Definition
Namespace: Numerics.NET.Data.Matlab
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Overload List
Read | Reads all data frames from a stream. |
Read | Reads all data frames from a Matlab® data file. |
ReadAllDataFrames(Stream)
Reads all data frames from a stream.
public static Dictionary<string, DataFrame<long, string>> ReadAllDataFrames(
Stream stream
)
Parameters
- stream Stream
- The stream to read from.
Return Value
Dictionary<String, DataFrame<Int64, String>>A dictionary containing all the data frames read from the stream using their name as the key.
ReadAllDataFrames(String)
Reads all data frames from a Matlab® data file.
public static Dictionary<string, DataFrame<long, string>> ReadAllDataFrames(
string path
)
Parameters
- path String
- The file to read from.
Return Value
Dictionary<String, DataFrame<Int64, String>>A dictionary containing all the data frames read from the file using their name as the key.