ManagedArrayFunctions<T>.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 (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual void Atan2(
	int length,
	ArraySlice<T> y,
	ArraySlice<T> x,
	ArraySlice<T> result
)

Parameters

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

Implements

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

See Also