MatlabFile.ReadDataFrames Method

Definition

Namespace: Extreme.Data.Matlab
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadDataFrames(Stream, IEnumerable<String>) Reads the specified data frames from a stream.
ReadDataFrames(String, IEnumerable<String>) Reads the specified data frames from a Matlab® data file.

MatlabFile.ReadDataFrames(Stream, IEnumerable<String>)

Reads the specified data frames from a stream.
C#
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.

MatlabFile.ReadDataFrames(String, IEnumerable<String>)

Reads the specified data frames from a Matlab® data file.
C#
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.

See Also