Matlab File.Read Data Frame 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 a data frame from the specified Matlab® data file. |
Read | Reads a data frame from the specified Matlab® data file. |
Read | Reads the data frame with the specified name from a stream. |
Read | Reads the data frame with the specified name from a Matlab® data file. |
ReadDataFrame(Stream)
Reads a data frame from the specified Matlab® data file.
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.
ReadDataFrame(String)
Reads a data frame from the specified Matlab® data file.
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.
ReadDataFrame(Stream, String)
Reads the data frame with the specified name from a stream.
public static DataFrame<long, string> ReadDataFrame(
Stream stream,
string name
)
Parameters
Return Value
DataFrame<Int64, String>The data frame that was read from the stream.
ReadDataFrame(String, String)
Reads the data frame with the specified name from a Matlab® data file.
public static DataFrame<long, string> ReadDataFrame(
string path,
string name
)
Parameters
Return Value
DataFrame<Int64, String>The data frame that was read from the file.