| 
            
              MatReader Constructor (BinaryReader, Boolean, Boolean)
             | 
          
        
          
    Namespace: 
   Accord.IO
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic MatReader(
	BinaryReader reader,
	bool autoTranspose = true,
	bool lazy = true
)
Public Sub New ( 
	reader As BinaryReader,
	Optional autoTranspose As Boolean = true,
	Optional lazy As Boolean = true
)
 Request Example
		View SourceParameters
- reader
 - Type: System.IOBinaryReader
A reader for 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