TensorPrimitives.Ieee754Remainder メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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>)
指定したテンソル内の数値の要素ごとの剰余を計算します。
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
パラメーター
スパンとして表される最初のテンソル。
スパンとして表される 2 番目のテンソル。
- destination
- Span<T>
スパンとして表される宛先テンソル。
例外
y
と destination
は重複するメモリの場所を参照し、同じ場所から開始しないでください。
注釈
このメソッドは、
を効果的に計算します。destination
[i] = T.Ieee754Remainder(x
[i], y
[i])
適用対象
Ieee754Remainder<T>(ReadOnlySpan<T>, T, Span<T>)
指定したテンソル内の数値の要素ごとの剰余を計算します。
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
パラメーター
スパンとして表される最初のテンソル。
- y
- T
スカラーとして表される 2 番目のテンソル。
- destination
- Span<T>
スパンとして表される宛先テンソル。
例外
x
と destination
は重複するメモリの場所を参照し、同じ場所から開始しないでください。
注釈
このメソッドは、
を効果的に計算します。destination
[i] = T.Ieee754Remainder(x
[i], y
)
適用対象
Ieee754Remainder<T>(T, ReadOnlySpan<T>, Span<T>)
指定したテンソル内の数値の要素ごとの剰余を計算します。
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
スカラーとして表される最初のテンソル。
スパンとして表される 2 番目のテンソル。
- destination
- Span<T>
スパンとして表される宛先テンソル。
例外
y
と destination
は重複するメモリの場所を参照し、同じ場所から開始しないでください。
注釈
このメソッドは、
を効果的に計算します。destination
[i] = T.Ieee754Remainder(x
, y
[i])
適用対象
.NET