|
MatReader Constructor (String, Boolean, Boolean)
|
Namespace:
Accord.IO
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public MatReader(
string fileName,
bool autoTranspose = true,
bool lazy = true
)
Public Sub New (
fileName As String,
Optional autoTranspose As Boolean = true,
Optional lazy As Boolean = true
)
Request Example
View SourceParameters
- fileName
- Type: SystemString
A relative or absolute path for 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