Click or drag to resize
Accord.NET (logo)

MatReader Constructor (Stream, Boolean, Boolean)

Creates a new MatReader.

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public MatReader(
	Stream input,
	bool autoTranspose = true,
	bool lazy = true
)
Request Example View Source

Parameters

input
Type: System.IOStream
The input stream containing the MAT file.
autoTranspose (Optional)
Type: SystemBoolean
Pass true to automatically transpose matrices if they have been stored differently from .NET's default row-major order. Default is true.
lazy (Optional)
Type: SystemBoolean
Whether matrices should be read lazily (if set to true, only matrices that have explicitly been asked for will be loaded).
See Also