Computes the four-quadrant inverse tangent of the corresponding elements
of two matrices.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> Atan2<T>(
Matrix<T> y,
Matrix<T> x
)
Public Shared Function Atan2(Of T) (
y As Matrix(Of T),
x As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ Atan2(
Matrix<T>^ y,
Matrix<T>^ x
)
static member Atan2 :
y : Matrix<'T> *
x : Matrix<'T> -> Matrix<'T>
Parameters
- y
- Type: Extreme.MathematicsMatrixT
A matrix that contains the y-coordinates. - x
- Type: Extreme.MathematicsMatrixT
A matrix that contains the x-coordinates.
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are equal to
the four-quadrant inverse tangent of the corresponding elements of
y and
x.
Reference