15 references to Atan2
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
669
destination = T.
Atan2
(x, y);
676
destination[i] = T.
Atan2
(x[i], y);
682
destination = T.
Atan2
(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Atan2.cs (1)
74
public static T Invoke(T y, T x) => T.
Atan2
(y, x);
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
824
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1475
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1094
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
946
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
957
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
950
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1083
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
819
/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.
Atan2
(TSelf, TSelf)" />
System.Runtime.Numerics (3)
System\Numerics\Complex.Generic.cs (3)
57
public T GetPhase() => T.
Atan2
(m_imaginary, m_real);
939
return new Complex<T>(T.Log(Abs(value)), T.
Atan2
(value.m_imaginary, value.m_real));
1113
T theta = T.
Atan2
(valueImaginary, valueReal);