Matrix.Atan2<T> Method

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

Definition

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