IArrayFunctions<T, TShape, TArray>.Atan2 Method

Computes the inverse tangent of each element of two arrays.

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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