Matrix.Atan2<T> Method

Computes the four-quadrant inverse tangent of the corresponding elements of two matrices.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> Atan2<T>(
	Matrix<T> y,
	Matrix<T> x
)

Parameters

y  Matrix<T>
A matrix that contains the y-coordinates.
x  Matrix<T>
A matrix that contains the x-coordinates.

Type Parameters

T

Return Value

Matrix<T>
A matrix whose elements are equal to the four-quadrant inverse tangent of the corresponding elements of y and x.

Exceptions

ArgumentNullException

y is null

-or-

x is null

See Also