Creates a new matrix with the same dimensions as a given matrix, whose values are the result of applying the arctangent2 function to each element of the matrix with the corresponding element from a second matrix.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleMatrix Atan2(
	DoubleMatrix A,
	DoubleMatrix B
)
Visual Basic (Declaration)
Public Shared Function Atan2 ( _
	A As DoubleMatrix, _
	B As DoubleMatrix _
) As DoubleMatrix
Visual C++
public:
static DoubleMatrix^ Atan2(
	DoubleMatrix^ A, 
	DoubleMatrix^ B
)

Return Value

A new matrix.

Remarks

C[i,j] = System.Math.Atan2(A[i,j], B[i,j])

See Also