Condividi tramite


Tensor.RotateRight Metodo

Definizione

Overload

RotateRight<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>)

Calcola la rotazione dell'elemento a destra dei numeri nel tensore specificato in base alla quantità di rotazione specificata.

RotateRight<T>(ReadOnlyTensorSpan<T>, Int32)

Calcola la rotazione dell'elemento a destra dei numeri nel tensore specificato in base alla quantità di rotazione specificata.

RotateRight<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>)

Origine:
TensorExtensions.cs
Origine:
TensorExtensions.cs

Calcola la rotazione dell'elemento a destra dei numeri nel tensore specificato in base alla quantità di rotazione specificata.

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static System::Numerics::Tensors::TensorSpan<T> ^ RotateRight(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int rotateAmount, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> RotateRight<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int rotateAmount, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBinaryInteger<T>;
static member RotateRight : ReadOnlyTensorSpan * int * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Function RotateRight(Of T As IBinaryInteger(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), rotateAmount As Integer, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

Parametri di tipo

T

Parametri

rotateAmount
Int32

Numero di bit da ruotare, rappresentati come scalari.

destination
TensorSpan<T>

Restituisce

Eccezioni

La destinazione è troppo breve.

Si applica a

RotateRight<T>(ReadOnlyTensorSpan<T>, Int32)

Origine:
TensorExtensions.cs
Origine:
TensorExtensions.cs

Calcola la rotazione dell'elemento a destra dei numeri nel tensore specificato in base alla quantità di rotazione specificata.

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static System::Numerics::Tensors::Tensor<T> ^ RotateRight(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int rotateAmount);
public static System.Numerics.Tensors.Tensor<T> RotateRight<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int rotateAmount) where T : System.Numerics.IBinaryInteger<T>;
static member RotateRight : ReadOnlyTensorSpan * int -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBinaryInteger<'T>)> (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Function RotateRight(Of T As IBinaryInteger(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), rotateAmount As Integer) As Tensor(Of T)

Parametri di tipo

T

Parametri

rotateAmount
Int32

Numero di bit da ruotare, rappresentati come scalari.

Restituisce

Eccezioni

La destinazione è troppo breve.

Si applica a