共用方式為


TensorPrimitives.Atan2Pi 方法

定義

多載

Atan2Pi<T>(ReadOnlySpan<T>, T, Span<T>)

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

Atan2Pi<T>(T, ReadOnlySpan<T>, Span<T>)

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

Atan2Pi<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

Atan2Pi<T>(ReadOnlySpan<T>, T, Span<T>)

來源:
TensorPrimitives.Atan2Pi.cs
來源:
TensorPrimitives.Atan2Pi.cs

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Atan2Pi(ReadOnlySpan<T> y, T x, Span<T> destination);
public static void Atan2Pi<T> (ReadOnlySpan<T> y, T x, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * 'T * Span<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Shared Sub Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (y As ReadOnlySpan(Of T), x As T, destination As Span(Of T))

類型參數

T

參數

y
ReadOnlySpan<T>

第一個張量,以範圍表示。

x
T

第二個張量,以純量表示。

destination
Span<T>

目的地張量,以範圍表示。

例外狀況

ydestination 參考重疊的記憶體位置,而且不會從相同的位置開始。

備註

這個方法會有效地計算 destination[i] = T.Atan2(y[i], x)

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Atan2Pi<T>(T, ReadOnlySpan<T>, Span<T>)

來源:
TensorPrimitives.Atan2Pi.cs
來源:
TensorPrimitives.Atan2Pi.cs

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Atan2Pi(T y, ReadOnlySpan<T> x, Span<T> destination);
public static void Atan2Pi<T> (T y, ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : 'T * ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * Span<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Shared Sub Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (y As T, x As ReadOnlySpan(Of T), destination As Span(Of T))

類型參數

T

參數

y
T

第一個張量,以純量表示。

x
ReadOnlySpan<T>

第二個張量,以範圍表示。

destination
Span<T>

目的地張量,以範圍表示。

例外狀況

xdestination 參考重疊的記憶體位置,而且不會從相同的位置開始。

備註

這個方法會有效地計算 destination[i] = T.Atan2(y, x[i])

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Atan2Pi<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

來源:
TensorPrimitives.Atan2Pi.cs
來源:
TensorPrimitives.Atan2Pi.cs

計算指定張量中兩個值的商數以元素為向反正切值,並將結果除以 Pi。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Atan2Pi(ReadOnlySpan<T> y, ReadOnlySpan<T> x, Span<T> destination);
public static void Atan2Pi<T> (ReadOnlySpan<T> y, ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Atan2Pi : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * Span<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Shared Sub Atan2Pi(Of T As IFloatingPointIeee754(Of T)) (y As ReadOnlySpan(Of T), x As ReadOnlySpan(Of T), destination As Span(Of T))

類型參數

T

參數

y
ReadOnlySpan<T>

第一個張量,以範圍表示。

x
ReadOnlySpan<T>

第二個張量,以範圍表示。

destination
Span<T>

目的地張量,以範圍表示。

例外狀況

xdestination 參考重疊的記憶體位置,而且不會從相同的位置開始。

備註

這個方法會有效地計算 destination[i] = T.Atan2(y[i], x[i])

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於