Returns a matrix whose elements are the minimums of the components of two vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> MinCore(
Matrix<T> other,
Matrix<T> result
)
Protected Overridable Function MinCore (
other As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ MinCore(
Matrix<T>^ other,
Matrix<T>^ result
)
abstract MinCore :
other : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override MinCore :
other : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- other
- Type: Extreme.MathematicsMatrixT
A MatrixT. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTA matrix whose elements are the largest of the corresponding elements
of this matrix and
other.
Reference