IArrayFunctions<T, TShape, TArray>.Atan2 Method

Computes the inverse tangent of each element of two arrays.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void Atan2(
	TShape shape,
	TArray y,
	TArray x,
	TArray result
)

Parameters

shape  TShape
The number of elements in the arrays.
y  TArray
The array that holds the y-values.
x  TArray
The array that holds the x-values.
result  TArray
The array that holds the results.

See Also