Udostępnij za pośrednictwem


TensorPrimitives.Ieee754Remainder Metoda

Definicja

Przeciążenia

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

Oblicza mądry element reszty liczb w określonych tensorach.

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

Oblicza mądry element reszty liczb w określonych tensorach.

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

Oblicza mądry element reszty liczb w określonych tensorach.

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

Źródło:
TensorPrimitives.Ieee754Remainder.cs
Źródło:
TensorPrimitives.Ieee754Remainder.cs

Oblicza mądry element reszty liczb w określonych tensorach.

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

x
ReadOnlySpan<T>

Pierwszy tensor reprezentowany jako zakres.

y
ReadOnlySpan<T>

Drugi tensor, reprezentowany jako zakres.

destination
Span<T>

Tensor docelowy reprezentowany jako zakres.

Wyjątki

y i destination odwołują się do nakładających się lokalizacji pamięci i nie zaczynają się w tej samej lokalizacji.

Uwagi

Ta metoda skutecznie oblicza destination[i] = T.Ieee754Remainder(x[i], y[i]).

Dotyczy

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

Źródło:
TensorPrimitives.Ieee754Remainder.cs
Źródło:
TensorPrimitives.Ieee754Remainder.cs

Oblicza mądry element reszty liczb w określonych tensorach.

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

x
ReadOnlySpan<T>

Pierwszy tensor reprezentowany jako zakres.

y
T

Drugi tensor, reprezentowany jako skalarny.

destination
Span<T>

Tensor docelowy reprezentowany jako zakres.

Wyjątki

x i destination odwołują się do nakładających się lokalizacji pamięci i nie zaczynają się w tej samej lokalizacji.

Uwagi

Ta metoda skutecznie oblicza destination[i] = T.Ieee754Remainder(x[i], y).

Dotyczy

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

Źródło:
TensorPrimitives.Ieee754Remainder.cs
Źródło:
TensorPrimitives.Ieee754Remainder.cs

Oblicza mądry element reszty liczb w określonych tensorach.

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

Pierwszy tensor, reprezentowany jako skalarny.

y
ReadOnlySpan<T>

Drugi tensor, reprezentowany jako zakres.

destination
Span<T>

Tensor docelowy reprezentowany jako zakres.

Wyjątki

y i destination odwołują się do nakładających się lokalizacji pamięci i nie zaczynają się w tej samej lokalizacji.

Uwagi

Ta metoda skutecznie oblicza destination[i] = T.Ieee754Remainder(x, y[i]).

Dotyczy