Tensor.LeftShiftAssignment Operador

Definição

Sobrecargas

Nome Description
LeftShiftAssignment<TScalar>(Tensor<TScalar>, Int32)

Executa o deslocamento esquerdo no local no elemento em termos de elemento em um tensor.

LeftShiftAssignment<TScalar>(TensorSpan<TScalar>, Int32)

Executa o deslocamento esquerdo no local no elemento em termos de elemento em um tensor.

LeftShiftAssignment<TScalar>(Tensor<TScalar>, Int32)

Origem:
Tensor.op_LeftShift.cs
Origem:
Tensor.op_LeftShift.cs

Executa o deslocamento esquerdo no local no elemento em termos de elemento em um tensor.

public:
generic <typename TScalar>
 where TScalar : System::Numerics::IShiftOperators<TScalar, int, TScalar> static void op_LeftShiftAssignment(System::Numerics::Tensors::Tensor<TScalar> ^ tensor, int shiftAmount);
public static void op_LeftShiftAssignment<TScalar>(System.Numerics.Tensors.Tensor<TScalar> tensor, int shiftAmount) where TScalar : System.Numerics.IShiftOperators<TScalar,int,TScalar>;
static member op_LeftShiftAssignment : System.Numerics.Tensors.Tensor<'Scalar (requires 'Scalar :> System.Numerics.IShiftOperators<'Scalar, int, 'Scalar>)> * int -> unit (requires 'Scalar :> System.Numerics.IShiftOperators<'Scalar, int, 'Scalar>)
Public op_LeftShiftAssignment(Of TScalar As IShiftOperators(Of TScalar, Integer, TScalar)) (tensor As Tensor(Of TScalar), shiftAmount As Integer)

Parâmetros de tipo

TScalar

O tipo dos elementos no tensor.

Parâmetros

tensor
Tensor<TScalar>

O tensor no qual operar.

shiftAmount
Int32

O valor a ser deslocado para cada elemento no tensor.

Aplica-se a

LeftShiftAssignment<TScalar>(TensorSpan<TScalar>, Int32)

Origem:
Tensor.op_LeftShift.cs
Origem:
Tensor.op_LeftShift.cs

Executa o deslocamento esquerdo no local no elemento em termos de elemento em um tensor.

public:
generic <typename TScalar>
 where TScalar : System::Numerics::IShiftOperators<TScalar, int, TScalar> static void op_LeftShiftAssignment(System::Numerics::Tensors::TensorSpan<TScalar> % tensor, int shiftAmount);
public static void op_LeftShiftAssignment<TScalar>(ref System.Numerics.Tensors.TensorSpan<TScalar> tensor, int shiftAmount) where TScalar : System.Numerics.IShiftOperators<TScalar,int,TScalar>;
static member op_LeftShiftAssignment : TensorSpan * int -> unit (requires 'Scalar :> System.Numerics.IShiftOperators<'Scalar, int, 'Scalar>)
Public op_LeftShiftAssignment(Of TScalar As IShiftOperators(Of TScalar, Integer, TScalar)) (ByRef tensor As TensorSpan(Of TScalar), shiftAmount As Integer)

Parâmetros de tipo

TScalar

O tipo dos elementos no tensor.

Parâmetros

tensor
TensorSpan<TScalar>

O tensor no qual operar.

shiftAmount
Int32

O valor a ser deslocado para cada elemento no tensor.

Aplica-se a