MatlabFile.ReadMatrix Method

Definition

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

Overload List

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.

MatlabFile.ReadMatrix<T>(Stream, Boolean)

Reads a matrix from the specified Matlab® data file.
C#
public static Matrix<T> ReadMatrix<T>(
	Stream stream,
	bool strict
)

Parameters

stream  Stream
The stream to read from.
strict  Boolean
Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Matrix<T>
The matrix that was read from the stream.

MatlabFile.ReadMatrix<T>(String, Boolean)

Reads a matrix from the specified Matlab® data file.
C#
public static Matrix<T> ReadMatrix<T>(
	string path,
	bool strict = true
)

Parameters

path  String
The file to read from.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Matrix<T>
The matrix that was read from the file.

MatlabFile.ReadMatrix<T>(Stream, String, Boolean)

Reads the matrix with the specified name from a stream.
C#
public static Matrix<T> ReadMatrix<T>(
	Stream stream,
	string name,
	bool strict = true
)

Parameters

stream  Stream
The stream to read from.
name  String
The name of the matrix to read.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Matrix<T>
The matrix that was read from the stream.

MatlabFile.ReadMatrix<T>(String, String, Boolean)

Reads the matrix with the specified name from a Matlab® data file.
C#
public static Matrix<T> ReadMatrix<T>(
	string path,
	string name,
	bool strict = true
)

Parameters

path  String
The file to read from.
name  String
The name of the matrix to read.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Matrix<T>
The matrix that was read from the file.

See Also