MatlabFile.ReadDataFrame Method

Definition

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

Overload List

ReadDataFrame(Stream) Reads a data frame from the specified Matlab® data file.
ReadDataFrame(String) Reads a data frame from the specified Matlab® data file.
ReadDataFrame(Stream, String) Reads the data frame with the specified name from a stream.
ReadDataFrame(String, String) Reads the data frame with the specified name from a Matlab® data file.

MatlabFile.ReadDataFrame(Stream)

Reads a data frame from the specified Matlab® data file.
C#
public static DataFrame<long, string> ReadDataFrame(
	Stream stream
)

Parameters

stream  Stream
The stream to read from.

Return Value

DataFrame<Int64, String>
The data frame that was read from the stream.

MatlabFile.ReadDataFrame(String)

Reads a data frame from the specified Matlab® data file.
C#
public static DataFrame<long, string> ReadDataFrame(
	string path
)

Parameters

path  String
The file to read from.

Return Value

DataFrame<Int64, String>
The data frame that was read from the file.

MatlabFile.ReadDataFrame(Stream, String)

Reads the data frame with the specified name from a stream.
C#
public static DataFrame<long, string> ReadDataFrame(
	Stream stream,
	string name
)

Parameters

stream  Stream
The stream to read from.
name  String
The name of the data frame to read.

Return Value

DataFrame<Int64, String>
The data frame that was read from the stream.

MatlabFile.ReadDataFrame(String, String)

Reads the data frame with the specified name from a Matlab® data file.
C#
public static DataFrame<long, string> ReadDataFrame(
	string path,
	string name
)

Parameters

path  String
The file to read from.
name  String
The name of the data frame to read.

Return Value

DataFrame<Int64, String>
The data frame that was read from the file.

See Also