Click or drag to resize

VectorTPointwiseAtan2(VectorT, VectorT) Method

Pointwise applies the atan2 function to each value of the current vector and a given other vector being the 'x' of atan2 and the 'this' vector 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(
	Vector<T> other,
	Vector<T> result
)

Parameters

other  VectorT

[Missing <param name="other"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Vector`1.PointwiseAtan2(Altaxo.Calc.LinearAlgebra.Vector{`0},Altaxo.Calc.LinearAlgebra.Vector{`0})"]

result  VectorT
The vector to store the result
See Also