Matrix.Atan 2<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#
A matrix whose elements are equal to the four-quadrant inverse tangent of the corresponding elements of y and x.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
Argument | y is null -or- x is null |