Tensor.Log Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
| Log<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato. |
| Log<T>(ReadOnlyTensorSpan<T>) |
Accetta il logaritmo naturale di ogni elemento del ReadOnlyTensorSpan<T> e restituisce un nuovo Tensor<T> con il risultato. |
| Log<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato. |
| Log<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Accetta il logaritmo naturale di ogni elemento del ReadOnlyTensorSpan<T> e restituisce un nuovo TensorSpan<T> con il risultato. |
| Log<T>(ReadOnlyTensorSpan<T>, T) |
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato. |
| Log<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato. |
Log<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Origine:
- TensorExtensions.cs
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Log(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> Log<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.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Parametri di tipo
- T
Parametri
Primo tensore
Secondo tensore
- destination
- TensorSpan<T>
Tensore di destinazione, rappresentato come intervallo.
Restituisce
Si applica a
Log<T>(ReadOnlyTensorSpan<T>)
- Origine:
- TensorExtensions.cs
Accetta il logaritmo naturale di ogni elemento del ReadOnlyTensorSpan<T> e restituisce un nuovo Tensor<T> con il risultato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Log(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Log<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)> (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Parametri di tipo
- T
Parametri
Il ReadOnlyTensorSpan<T> di prendere il logaritmo naturale di.
Restituisce
Si applica a
Log<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Origine:
- TensorExtensions.cs
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Log(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Log<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)> (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Parametri di tipo
- T
Parametri
Primo tensore
Secondo tensore
Restituisce
Si applica a
Log<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Origine:
- TensorExtensions.cs
Accetta il logaritmo naturale di ogni elemento del ReadOnlyTensorSpan<T> e restituisce un nuovo TensorSpan<T> con il risultato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Log(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Log<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Parametri di tipo
- T
Parametri
Il ReadOnlyTensorSpan<T> di prendere il logaritmo naturale di.
- destination
- TensorSpan<T>
Restituisce
Si applica a
Log<T>(ReadOnlyTensorSpan<T>, T)
- Origine:
- TensorExtensions.cs
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Log(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Log<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)> (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)
Parametri di tipo
- T
Parametri
Primo tensore
- y
- T
Secondo tensore
Restituisce
Si applica a
Log<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Origine:
- TensorExtensions.cs
Calcola il logaritmo a livello di elemento dei numeri in un tensore specificato nella base specificata in un altro tensore specificato.
public:
generic <typename T>
where T : System::Numerics::ILogarithmicFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Log(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Log<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ILogarithmicFunctions<T>;
static member Log : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ILogarithmicFunctions<'T>)
Public Function Log(Of T As ILogarithmicFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Parametri di tipo
- T
Parametri
Primo tensore
- y
- T
Secondo tensore
- destination
- TensorSpan<T>
Tensore di destinazione, rappresentato come intervallo.