Returns a matrix whose elements are the maximums of the components of two vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> MaxInto<T>(
this Matrix<T> left,
Matrix<T> right,
Matrix<T> result
)
<ExtensionAttribute>
Public Shared Function MaxInto(Of T) (
left As Matrix(Of T),
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Matrix<T>^ MaxInto(
Matrix<T>^ left,
Matrix<T>^ right,
Matrix<T>^ result
)
[<ExtensionAttribute>]
static member MaxInto :
left : Matrix<'T> *
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A MatrixT. - right
- Type: Extreme.MathematicsMatrixT
A MatrixT. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
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