TensorPrimitives.Ieee754Remainder メソッド

定義

オーバーロード

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

指定したテンソル内の数値の要素ごとの剰余を計算します。

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

指定したテンソル内の数値の要素ごとの剰余を計算します。

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

指定したテンソル内の数値の要素ごとの剰余を計算します。

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

ソース:
TensorPrimitives.Ieee754Remainder.cs
ソース:
TensorPrimitives.Ieee754Remainder.cs

指定したテンソル内の数値の要素ごとの剰余を計算します。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Ieee754Remainder(ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination);
public static void Ieee754Remainder<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Ieee754Remainder : 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 Ieee754Remainder(Of T As IFloatingPointIeee754(Of T)) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T), destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlySpan<T>

スパンとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

ydestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Ieee754Remainder(x[i], y[i])を効果的に計算します。

適用対象

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

ソース:
TensorPrimitives.Ieee754Remainder.cs
ソース:
TensorPrimitives.Ieee754Remainder.cs

指定したテンソル内の数値の要素ごとの剰余を計算します。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Ieee754Remainder(ReadOnlySpan<T> x, T y, Span<T> destination);
public static void Ieee754Remainder<T> (ReadOnlySpan<T> x, T y, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Ieee754Remainder : 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 Ieee754Remainder(Of T As IFloatingPointIeee754(Of T)) (x As ReadOnlySpan(Of T), y As T, destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
T

スカラーとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Ieee754Remainder(x[i], y)を効果的に計算します。

適用対象

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

ソース:
TensorPrimitives.Ieee754Remainder.cs
ソース:
TensorPrimitives.Ieee754Remainder.cs

指定したテンソル内の数値の要素ごとの剰余を計算します。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void Ieee754Remainder(T x, ReadOnlySpan<T> y, Span<T> destination);
public static void Ieee754Remainder<T> (T x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Ieee754Remainder : '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 Ieee754Remainder(Of T As IFloatingPointIeee754(Of T)) (x As T, y As ReadOnlySpan(Of T), destination As Span(Of T))

型パラメーター

T

パラメーター

x
T

スカラーとして表される最初のテンソル。

y
ReadOnlySpan<T>

スパンとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

ydestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Ieee754Remainder(x, y[i])を効果的に計算します。

適用対象