MatlabFile Class

Contains static methods for reading from Matlab® data files.

Definition

Namespace: Extreme.Data.Matlab
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public static class MatlabFile
Inheritance
Object  →  MatlabFile

Methods

Open(Stream) Opens a Matlab® data file.
Open(String) Opens a Matlab® data file.
ReadAllDataFrames(Stream) Reads all data frames from a stream.
ReadAllDataFrames(String) Reads all data frames from a Matlab® data file.
ReadAllMatrices<T>(Stream, Boolean) Reads all matrices from a stream.
ReadAllMatrices<T>(String, Boolean) Reads all matrices from a Matlab® data file.
ReadAllVectors<T>(Stream, Boolean) Reads all vectors from a stream.
ReadAllVectors<T>(String, Boolean) Reads all vectors from a Matlab® data file.
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.
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.
ReadMatrices<T>(Stream, IEnumerable<String>, Boolean) Reads the specified matrices from a stream.
ReadMatrices<T>(String, IEnumerable<String>, Boolean) Reads the specified matrices from a Matlab® data file.
ReadMatrix<T>(Stream, Boolean) Reads a matrix from the specified Matlab® data file.
ReadMatrix<T>(String, Boolean) Reads a matrix from the specified Matlab® data file.
ReadMatrix<T>(Stream, String, Boolean) Reads the matrix with the specified name from a stream.
ReadMatrix<T>(String, String, Boolean) Reads the matrix with the specified name from a Matlab® data file.
ReadVector<T>(Stream, Boolean) Reads a vector from the specified Matlab® data file.
ReadVector<T>(String, Boolean) Reads a vector from the specified Matlab® data file.
ReadVector<T>(Stream, String, Boolean) Reads the vector with the specified name from a stream.
ReadVector<T>(String, String, Boolean) Reads the vector with the specified name from a Matlab® data file.
ReadVectors<T>(Stream, IEnumerable<String>, Boolean) Reads the specified vectors from a stream.
ReadVectors<T>(String, IEnumerable<String>, Boolean) Reads the specified vectors from a Matlab® data file.

See Also