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