Click or drag to resize

VectorTPointwiseAtan2(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 current vector being the 'y'.

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

Parameters

other  VectorT
The vector providing the x values for the atan2 operation.

Return Value

VectorT
A new vector containing the pointwise two-argument arctangents.
See Also