ManagedArrayFunctionsOfSingle.Atan2 Method

Computes the four-quadrant inverse tangent of each pair of corresponding elements of two arrays.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
C#
public override void Atan2(
	int length,
	ArraySlice<float> y,
	ArraySlice<float> x,
	ArraySlice<float> result
)

Parameters

length  Int32
The number of elements in the array.
y  ArraySlice<Single>
The array that holds the y-values.
x  ArraySlice<Single>
The array that holds the x-values.
result  ArraySlice<Single>
The array that holds the results.

Implements

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

See Also