TensorPrimitives.Round Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Round<T>(ReadOnlySpan<T>, Span<T>) |
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié |
Round<T>(ReadOnlySpan<T>, Int32, Span<T>) |
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié |
Round<T>(ReadOnlySpan<T>, MidpointRounding, Span<T>) |
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié |
Round<T>(ReadOnlySpan<T>, Int32, MidpointRounding, Span<T>) |
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié |
Round<T>(ReadOnlySpan<T>, Span<T>)
- Source:
- TensorPrimitives.Round.cs
- Source:
- TensorPrimitives.Round.cs
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- destination
- Span<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Exceptions
x
et destination
référence les emplacements de mémoire qui se chevauchent et ne commencent pas au même emplacement.
Remarques
Cette méthode calcule efficacement
.destination
[i] = T.Round(x
[i])
S’applique à
Round<T>(ReadOnlySpan<T>, Int32, Span<T>)
- Source:
- TensorPrimitives.Round.cs
- Source:
- TensorPrimitives.Round.cs
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, int digits, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, int digits, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * int * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), digits As Integer, destination As Span(Of T))
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- digits
- Int32
Nombre de chiffres fractionnels auxquels les nombres de x
doivent être arrondis.
- destination
- Span<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Exceptions
x
et destination
référence les emplacements de mémoire qui se chevauchent et ne commencent pas au même emplacement.
Remarques
Cette méthode calcule efficacement
.destination
[i] = T.Round(x
[i], digits
)
S’applique à
Round<T>(ReadOnlySpan<T>, MidpointRounding, Span<T>)
- Source:
- TensorPrimitives.Round.cs
- Source:
- TensorPrimitives.Round.cs
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, MidpointRounding mode, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, MidpointRounding mode, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * MidpointRounding * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), mode As MidpointRounding, destination As Span(Of T))
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- mode
- MidpointRounding
Mode sous lequel x
doit être arrondi.
- destination
- Span<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Exceptions
x
et destination
référence les emplacements de mémoire qui se chevauchent et ne commencent pas au même emplacement.
Remarques
Cette méthode calcule efficacement
.destination
[i] = T.Round(x
[i], mode
)
S’applique à
Round<T>(ReadOnlySpan<T>, Int32, MidpointRounding, Span<T>)
- Source:
- TensorPrimitives.Round.cs
- Source:
- TensorPrimitives.Round.cs
Calcule l’arrondi à l’élément des nombres dans le tensoriel spécifié
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, int digits, MidpointRounding mode, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, int digits, MidpointRounding mode, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * int * MidpointRounding * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), digits As Integer, mode As MidpointRounding, destination As Span(Of T))
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- digits
- Int32
Nombre de chiffres fractionnels auxquels les nombres de x
doivent être arrondis.
- mode
- MidpointRounding
Mode sous lequel x
doit être arrondi.
- destination
- Span<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Exceptions
mode
n’est pas valide.
digits
n’est pas valide.
Remarques
Cette méthode calcule efficacement
.destination
[i] = T.Round(x
[i], digits
, mode
)