TensorPrimitives.Ieee754Remainder Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
Ieee754Remainder<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>) |
Vypočítá zbytek prvků z čísel v zadaných tensorech. |
Ieee754Remainder<T>(ReadOnlySpan<T>, T, Span<T>) |
Vypočítá zbytek prvků z čísel v zadaných tensorech. |
Ieee754Remainder<T>(T, ReadOnlySpan<T>, Span<T>) |
Vypočítá zbytek prvků z čísel v zadaných tensorech. |
Ieee754Remainder<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)
Vypočítá zbytek prvků z čísel v zadaných tensorech.
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))
Parametry typu
- T
Parametry
První tensor, reprezentovaný jako rozpětí.
Druhý tensor, reprezentovaný jako rozpětí.
- destination
- Span<T>
Cílový tensor, reprezentovaný jako rozpětí.
Výjimky
y
a destination
odkazují na překrývající se umístění paměti a nezačínají ve stejném umístění.
Poznámky
Tato metoda efektivně vypočítá
.destination
[i] = T.Ieee754Remainder(x
[i], y
[i])
Platí pro
Ieee754Remainder<T>(ReadOnlySpan<T>, T, Span<T>)
Vypočítá zbytek prvků z čísel v zadaných tensorech.
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))
Parametry typu
- T
Parametry
První tensor, reprezentovaný jako rozpětí.
- y
- T
Druhý tenzor, reprezentovaný jako skalární.
- destination
- Span<T>
Cílový tensor, reprezentovaný jako rozpětí.
Výjimky
x
a destination
odkazují na překrývající se umístění paměti a nezačínají ve stejném umístění.
Poznámky
Tato metoda efektivně vypočítá
.destination
[i] = T.Ieee754Remainder(x
[i], y
)
Platí pro
Ieee754Remainder<T>(T, ReadOnlySpan<T>, Span<T>)
Vypočítá zbytek prvků z čísel v zadaných tensorech.
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))
Parametry typu
- T
Parametry
- x
- T
První tensor, reprezentovaný jako skalární.
Druhý tensor, reprezentovaný jako rozpětí.
- destination
- Span<T>
Cílový tensor, reprezentovaný jako rozpětí.
Výjimky
y
a destination
odkazují na překrývající se umístění paměti a nezačínají ve stejném umístění.
Poznámky
Tato metoda efektivně vypočítá
.destination
[i] = T.Ieee754Remainder(x
, y
[i])