Tensor.Round Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| Round<T>(ReadOnlyTensorSpan<T>) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, Int32) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, MidpointRounding) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, Int32, MidpointRounding) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, MidpointRounding, TensorSpan<T>) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
| Round<T>(ReadOnlyTensorSpan<T>, Int32, MidpointRounding, TensorSpan<T>) |
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor |
Round<T>(ReadOnlyTensorSpan<T>)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::Tensor<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Round<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, Int32)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::Tensor<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int digits);
public static System.Numerics.Tensors.Tensor<T> Round<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int digits) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * int -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), digits As Integer) As Tensor(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- digits
- Int32
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, MidpointRounding)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::Tensor<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, MidpointRounding mode);
public static System.Numerics.Tensors.Tensor<T> Round<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, MidpointRounding mode) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * MidpointRounding -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), mode As MidpointRounding) As Tensor(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- mode
- MidpointRounding
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::TensorSpan<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Round<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- destination
- TensorSpan<T>
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, Int32, MidpointRounding)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::Tensor<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int digits, MidpointRounding mode);
public static System.Numerics.Tensors.Tensor<T> Round<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int digits, MidpointRounding mode) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * int * MidpointRounding -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), digits As Integer, mode As MidpointRounding) As Tensor(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- digits
- Int32
- mode
- MidpointRounding
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::TensorSpan<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int digits, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Round<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int digits, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * int * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), digits As Integer, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- digits
- Int32
- destination
- TensorSpan<T>
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, MidpointRounding, TensorSpan<T>)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::TensorSpan<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, MidpointRounding mode, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Round<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, MidpointRounding mode, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * MidpointRounding * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), mode As MidpointRounding, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- mode
- MidpointRounding
- destination
- TensorSpan<T>
Retouren
Van toepassing op
Round<T>(ReadOnlyTensorSpan<T>, Int32, MidpointRounding, TensorSpan<T>)
- Bron:
- Tensor.cs
- Bron:
- TensorExtensions.cs
- Bron:
- Tensor.cs
Berekent het elementgewijs afronden van de getallen in de opgegeven tensor
public:
generic <typename T>
where T : System::Numerics::IFloatingPoint<T> static System::Numerics::Tensors::TensorSpan<T> ^ Round(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int digits, MidpointRounding mode, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Round<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int digits, MidpointRounding mode, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlyTensorSpan * int * MidpointRounding * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Round(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), digits As Integer, mode As MidpointRounding, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Parameters
De invoer ReadOnlyTensorSpan<T>.
- digits
- Int32
- mode
- MidpointRounding
- destination
- TensorSpan<T>