Tensor<T>.AsTensorSpan 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
AsTensorSpan() |
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup." /> |
AsTensorSpan(ReadOnlySpan<NIndex>) |
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base agli indici iniziali forniti". /> |
AsTensorSpan(ReadOnlySpan<NRange>) |
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base agli intervalli forniti". /> |
AsTensorSpan(ReadOnlySpan<IntPtr>) |
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base alle posizioni iniziali fornite." /> |
AsTensorSpan()
- Origine:
- Tensor.cs
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup." />
public:
virtual System::Numerics::Tensors::TensorSpan<T> AsTensorSpan();
public System.Numerics.Tensors.TensorSpan<T> AsTensorSpan ();
abstract member AsTensorSpan : unit -> System.Numerics.Tensors.TensorSpan<'T>
override this.AsTensorSpan : unit -> System.Numerics.Tensors.TensorSpan<'T>
Public Function AsTensorSpan () As TensorSpan(Of T)
Restituisce
Implementazioni
Si applica a
AsTensorSpan(ReadOnlySpan<NIndex>)
- Origine:
- Tensor.cs
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base agli indici iniziali forniti". />
public:
virtual System::Numerics::Tensors::TensorSpan<T> AsTensorSpan(ReadOnlySpan<System::Buffers::NIndex> startIndex);
public System.Numerics.Tensors.TensorSpan<T> AsTensorSpan (scoped ReadOnlySpan<System.Buffers.NIndex> startIndex);
abstract member AsTensorSpan : ReadOnlySpan<System.Buffers.NIndex> -> System.Numerics.Tensors.TensorSpan<'T>
override this.AsTensorSpan : ReadOnlySpan<System.Buffers.NIndex> -> System.Numerics.Tensors.TensorSpan<'T>
Public Function AsTensorSpan (startIndex As ReadOnlySpan(Of NIndex)) As TensorSpan(Of T)
Parametri
- startIndex
- ReadOnlySpan<NIndex>
Intervalli desiderati nel TensorSpan<T>.
Restituisce
TensorSpan<T> in base agli intervalli specificati.
Implementazioni
Si applica a
AsTensorSpan(ReadOnlySpan<NRange>)
- Origine:
- Tensor.cs
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base agli intervalli forniti". />
public:
virtual System::Numerics::Tensors::TensorSpan<T> AsTensorSpan(ReadOnlySpan<System::Buffers::NRange> start);
public System.Numerics.Tensors.TensorSpan<T> AsTensorSpan (scoped ReadOnlySpan<System.Buffers.NRange> start);
abstract member AsTensorSpan : ReadOnlySpan<System.Buffers.NRange> -> System.Numerics.Tensors.TensorSpan<'T>
override this.AsTensorSpan : ReadOnlySpan<System.Buffers.NRange> -> System.Numerics.Tensors.TensorSpan<'T>
Public Function AsTensorSpan (start As ReadOnlySpan(Of NRange)) As TensorSpan(Of T)
Parametri
- start
- ReadOnlySpan<NRange>
Intervalli desiderati nel TensorSpan<T>.
Restituisce
TensorSpan<T> in base agli intervalli specificati.
Implementazioni
Si applica a
AsTensorSpan(ReadOnlySpan<IntPtr>)
- Origine:
- Tensor.cs
Converte questo Tensor<T> in un TensorSpan<T> che punta alla stessa memoria di backup in base alle posizioni iniziali fornite." />
public:
virtual System::Numerics::Tensors::TensorSpan<T> AsTensorSpan(ReadOnlySpan<IntPtr> start);
public System.Numerics.Tensors.TensorSpan<T> AsTensorSpan (scoped ReadOnlySpan<IntPtr> start);
abstract member AsTensorSpan : ReadOnlySpan<nativeint> -> System.Numerics.Tensors.TensorSpan<'T>
override this.AsTensorSpan : ReadOnlySpan<nativeint> -> System.Numerics.Tensors.TensorSpan<'T>
Public Function AsTensorSpan (start As ReadOnlySpan(Of IntPtr)) As TensorSpan(Of T)
Parametri
- start
-
ReadOnlySpan<nativeint>
Posizione iniziale desiderata nel TensorSpan<T>.
Restituisce
TensorSpan<T> in base agli intervalli specificati.