ManagedArrayFunctionsOfSingle.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.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
C#
public override void Hypot(
	int length,
	ArraySlice<float> first,
	ArraySlice<float> second,
	ArraySlice<float> result
)

Parameters

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

Implements

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

See Also