Computes the square root of the sum of the squared corresponding elements
of two matrices.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> HypotInto<T>(
Matrix<T> first,
Matrix<T> second,
Matrix<T> result
)
Public Shared Function HypotInto(Of T) (
first As Matrix(Of T),
second As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ HypotInto(
Matrix<T>^ first,
Matrix<T>^ second,
Matrix<T>^ result
)
static member HypotInto :
first : Matrix<'T> *
second : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- first
- Type: Extreme.MathematicsMatrixT
A matrix. - second
- Type: Extreme.MathematicsMatrixT
A matrix. - 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 equal to the square root of the sum of the squares
of the corresponding elements of
first and
second.
Reference