Converts the object to a matrix with the specified element type.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public virtual Matrix<T> ToMatrix<T>(
bool strict = true
)
Public Overridable Function ToMatrix(Of T) (
Optional strict As Boolean = true
) As Matrix(Of T)
public:
generic<typename T>
virtual Matrix<T>^ ToMatrix(
bool strict = true
)
abstract ToMatrix :
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Matrix<'T>
override ToMatrix :
?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:
MatrixTThe new matrix.
Implements
IDataObjectTObjectToMatrixT(Boolean)
Reference