Tensor.ShiftRightLogical Método

Definição

Sobrecargas

Name Description
ShiftRightLogical<T>(ReadOnlyTensorSpan<T>, Int32)

Realiza um deslocamento lógico para a direita elemento a elemento num tensor.

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

Realiza um deslocamento lógico para a direita elemento a elemento num tensor.

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

Origem:
Tensor.op_UnsignedRightShift.cs
Origem:
Tensor.op_UnsignedRightShift.cs

Realiza um deslocamento lógico para a direita elemento a elemento num tensor.

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

Parâmetros de Tipo Genérico

T

O tipo dos elementos no tensor.

Parâmetros

x
ReadOnlyTensorSpan<T>

O tensor para a direita lógica.

shiftAmount
Int32

A quantidade para deslocar cada elemento em x.

Devoluções

Um novo tensor contendo o resultado de x>>>shiftAmount.

Aplica-se a

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

Origem:
Tensor.op_UnsignedRightShift.cs
Origem:
Tensor.op_UnsignedRightShift.cs

Realiza um deslocamento lógico para a direita elemento a elemento num tensor.

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

Parâmetros de Tipo Genérico

T

O tipo dos elementos no tensor.

Parâmetros

x
ReadOnlyTensorSpan<T>

O tensor para a direita lógica.

shiftAmount
Int32

A quantidade para deslocar cada elemento em x.

destination
TensorSpan<T>

O destino onde o resultado de x>>>shiftAmount está escrito.

Devoluções

Uma referência a destination.

Exceções

As formas de x e destination não são compatíveis.

Aplica-se a