MatlabFile.ReadAllDataFrames Method

Definition

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

Overload List

ReadAllDataFrames(Stream) Reads all data frames from a stream.
ReadAllDataFrames(String) Reads all data frames from a Matlab® data file.

MatlabFile.ReadAllDataFrames(Stream)

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

MatlabFile.ReadAllDataFrames(String)

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

See Also