Computes the square root of the sum of the squared corresponding elements
of this matrix and another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> HypotCore(
Matrix<T> other,
Matrix<T> result
)
Protected Overridable Function HypotCore (
other As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ HypotCore(
Matrix<T>^ other,
Matrix<T>^ result
)
abstract HypotCore :
other : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override HypotCore :
other : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- other
- Type: Extreme.MathematicsMatrixT
The second matrix. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTA matrix whose elements
are equal to the square root of the sum of the squares
of the corresponding elements of this matrix and
other.
Reference