Tensor.Atan2Pi Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Atan2Pi<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new Tensor<T> with the result. |
Atan2Pi<T>(ReadOnlyTensorSpan<T>, T) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result. |
Atan2Pi<T>(T, ReadOnlyTensorSpan<T>) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result. |
Atan2Pi<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result. |
Atan2Pi<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result. |
Atan2Pi<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result. |
Atan2Pi<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new Tensor<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::Tensor<T> ^ Atan2Pi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Atan2Pi<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Type Parameters
- T
Parameters
The left ReadOnlyTensorSpan<T>.
The right ReadOnlyTensorSpan<T>.
Returns
Applies to
Atan2Pi<T>(ReadOnlyTensorSpan<T>, T)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::Tensor<T> ^ Atan2Pi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Atan2Pi<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)
Type Parameters
- T
Parameters
The left ReadOnlyTensorSpan<T>.
- y
- T
The right ReadOnlyTensorSpan<T>.
Returns
Applies to
Atan2Pi<T>(T, ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::Tensor<T> ^ Atan2Pi(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Atan2Pi<T> (T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : 'T * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Type Parameters
- T
Parameters
- x
- T
The left ReadOnlyTensorSpan<T>.
The right ReadOnlyTensorSpan<T>.
Returns
Applies to
Atan2Pi<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::TensorSpan<T> ^ Atan2Pi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Atan2Pi<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type Parameters
- T
Parameters
The left ReadOnlyTensorSpan<T>.
The right ReadOnlyTensorSpan<T>.
- destination
- TensorSpan<T>
Returns
Applies to
Atan2Pi<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::TensorSpan<T> ^ Atan2Pi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Atan2Pi<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type Parameters
- T
Parameters
The left ReadOnlyTensorSpan<T>.
- y
- T
The right ReadOnlyTensorSpan<T>.
- destination
- TensorSpan<T>
Returns
Applies to
Atan2Pi<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Takes the arc tangent of the two input ReadOnlyTensorSpan<T>, divides each element by pi, and returns a new TensorSpan<T> with the result.
public:
generic <typename T>
where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::TensorSpan<T> ^ Atan2Pi(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Atan2Pi<T> (T x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : 'T * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type Parameters
- T
Parameters
- x
- T
The left ReadOnlyTensorSpan<T>.
The right ReadOnlyTensorSpan<T>.
- destination
- TensorSpan<T>