ManagedArrayFunctions<T>.Hypot Method

Computes the square root of the sum of the squared corresponding elements of two matrices.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual void Hypot(
	int length,
	ArraySlice<T> first,
	ArraySlice<T> second,
	ArraySlice<T> result
)

Parameters

length  Int32
The number of elements in the array.
first  ArraySlice<T>
A vector.
second  ArraySlice<T>
A vector.
result  ArraySlice<T>
The array that holds the results.

Implements

IArrayFunctions<T, TShape, TArray>.Hypot(TShape, TArray, TArray, TArray)

See Also