Click or drag to resize

MatrixTPointwiseAtan2(MatrixT, MatrixT) Method

Pointwise applies the atan2 function to each value of the current matrix and a given other matrix being the 'x' of atan2 and the 'this' matrix being the 'y'

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void PointwiseAtan2(
	Matrix<T> other,
	Matrix<T> result
)

Parameters

other  MatrixT
The matrix providing the x values for the atan2 operation.
result  MatrixT
The matrix that receives the pointwise atan2 results.
See Also