Reads the two-dimensional array at the current position in the file.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public override Matrix<T> ReadMatrix<T>(
bool strict = true
)
Public Overrides Function ReadMatrix(Of T) (
Optional strict As Boolean = true
) As Matrix(Of T)
public:
generic<typename T>
virtual Matrix<T>^ ReadMatrix(
bool strict = true
) override
abstract ReadMatrix :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Matrix<'T>
override ReadMatrix :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Matrix<'T>
Parameters
- 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