Reads the two-dimensional array with the specified name in the file.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Matrix<T> ReadMatrix<T>(
string name,
bool strict = false
)
Public Function ReadMatrix(Of T) (
name As String,
Optional strict As Boolean = false
) As Matrix(Of T)
public:
generic<typename T>
Matrix<T>^ ReadMatrix(
String^ name,
bool strict = false
)
member ReadMatrix :
name : string *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Matrix<'T>
Parameters
- name
- Type: SystemString
The name of the matrix to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
MatrixTA matrix containing the data.
Reference