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