Matlab File.Read Matrices Method
            
            
            
            Definition
Namespace: Extreme.Data.Matlab
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Overload List
| Read | Reads the specified matrices from a stream. | 
| Read | Reads the specified matrices from a Matlab® data file. | 
ReadMatrices<T>(Stream, IEnumerable<String>, Boolean)
            Reads the specified matrices from a stream.
            
public static Dictionary<string, Matrix<T>> ReadMatrices<T>(
	Stream stream,
	IEnumerable<string> names,
	bool strict = true
)
Parameters
- stream Stream
 - The stream to read from.
 - names IEnumerable<String>
 - A sequence of names of the matrices 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
Dictionary<String, Matrix<T>>A dictionary containing the matrices read from the stream using their name as the key.
ReadMatrices<T>(String, IEnumerable<String>, Boolean)
            Reads the specified matrices from a Matlab® data file.
            
public static Dictionary<string, Matrix<T>> ReadMatrices<T>(
	string path,
	IEnumerable<string> names,
	bool strict = true
)
Parameters
- path String
 - The file to read from.
 - names IEnumerable<String>
 - A sequence of names of the matrices 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
Dictionary<String, Matrix<T>>A dictionary containing the matrices read from the file using their name as the key.