Tensor.MaxNumber 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
MaxNumber<T>(ReadOnlyTensorSpan<T>) |
Recherche le plus grand nombre dans le tensoriel spécifié. |
MaxNumber<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés. |
MaxNumber<T>(ReadOnlyTensorSpan<T>, T) |
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés. |
MaxNumber<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés. |
MaxNumber<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés. |
MaxNumber<T>(ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Recherche le plus grand nombre dans le tensoriel spécifié.
public:
generic <typename T>
where T : System::Numerics::INumber<T> static T MaxNumber(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static T MaxNumber<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.INumber<T>;
static member MaxNumber : ReadOnlyTensorSpan -> 'T (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxNumber(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As T
Paramètres de type
- T
Paramètres
Entrée ReadOnlyTensorSpan<T>..
Retours
S’applique à
MaxNumber<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés.
public:
generic <typename T>
where T : System::Numerics::INumber<T> static System::Numerics::Tensors::Tensor<T> ^ MaxNumber(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> MaxNumber<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.INumber<T>;
static member MaxNumber : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.INumber<'T>)> (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxNumber(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Le premier capteur, représenté sous la forme d’une étendue.
Le deuxième capteur, représenté sous la forme d’une étendue.
Retours
S’applique à
MaxNumber<T>(ReadOnlyTensorSpan<T>, T)
- Source:
- TensorExtensions.cs
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés.
public:
generic <typename T>
where T : System::Numerics::INumber<T> static System::Numerics::Tensors::Tensor<T> ^ MaxNumber(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> MaxNumber<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.INumber<T>;
static member MaxNumber : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.INumber<'T>)> (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxNumber(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Le premier capteur, représenté sous la forme d’une étendue.
- y
- T
Le deuxième capteur, représenté sous la forme d’une étendue.
Retours
S’applique à
MaxNumber<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés.
public:
generic <typename T>
where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ MaxNumber(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> MaxNumber<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.INumber<T>;
static member MaxNumber : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxNumber(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
Le premier capteur, représenté sous la forme d’une étendue.
Le deuxième capteur, représenté sous la forme d’une étendue.
- destination
- TensorSpan<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Retours
S’applique à
MaxNumber<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule le maximum d’éléments des nombres dans les tenseurs spécifiés.
public:
generic <typename T>
where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ MaxNumber(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> MaxNumber<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.INumber<T>;
static member MaxNumber : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxNumber(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
Le premier capteur, représenté sous la forme d’une étendue.
- y
- T
Le deuxième capteur, représenté sous la forme d’une étendue.
- destination
- TensorSpan<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.