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
public static Matrix<T> Min<T>(
this Matrix<T> left,
Matrix<T> right
)
<ExtensionAttribute>
Public Shared Function Min(Of T) (
left As Matrix(Of T),
right As Matrix(Of T)
) As Matrix(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Matrix<T>^ Min(
Matrix<T>^ left,
Matrix<T>^ right
)
[<ExtensionAttribute>]
static member Min :
left : Matrix<'T> *
right : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A MatrixT. - right
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are the largest of the corresponding elements
of
left and
right.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
MatrixT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference