Reads a matrix from the specified Matlab® data file.
Namespace:
Extreme.Data.Matlab
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Matrix<T> ReadMatrix<T>(
string path,
bool strict = true
)
Public Shared Function ReadMatrix(Of T) (
path As String,
Optional strict As Boolean = true
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ReadMatrix(
String^ path,
bool strict = true
)
static member ReadMatrix :
path : string *
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Matrix<'T>
Parameters
- path
- Type: SystemString
The file to read from. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (, the default), or whether
conversions are allowed ().
Type Parameters
- T
Return Value
Type:
MatrixTThe matrix that was read from the file.
Reference