Click or drag to resize

MatrixTPointwiseAtan2(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 Matrix<T> PointwiseAtan2(
	Matrix<T> other
)

Parameters

other  MatrixT
The matrix providing the x values for the atan2 operation.

Return Value

MatrixT
A matrix containing the pointwise atan2 results.
See Also