get Feature
inline fun <T : Any, F : Any> MatrixContext<T, *>.getFeature(m: Matrix<T>): F?
Content copied to clipboard
Gets a feature from the matrix. This function may return some additional features to kscience.kmath.nd.NDStructure.getFeature.
Return
a feature object or null
if it isn't present.
Parameters
<receiver>
the MatrixContext of T.
T
the type of items in the matrices.
M
the type of operated matrices.
F
the type of feature.
m
the matrix.