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.3179.0 (4.8.3179.0)
Syntax
C#
public void PointwiseAtan2(
	Matrix<T> other,
	Matrix<T> result
)

Parameters

other  MatrixT
The other matrix 'y'
result  MatrixT
The matrix with the result and 'x'

Return Value

See Also