Tensor.LeftShiftAssignment Operador
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Sobrecargas
| Name | Description |
|---|---|
| LeftShiftAssignment<TScalar>(Tensor<TScalar>, Int32) |
Executa um deslocamento para a esquerda elemento a elemento num tensor. |
| LeftShiftAssignment<TScalar>(TensorSpan<TScalar>, Int32) |
Executa um deslocamento para a esquerda elemento a elemento num tensor. |
LeftShiftAssignment<TScalar>(Tensor<TScalar>, Int32)
- Origem:
- Tensor.op_LeftShift.cs
- Origem:
- Tensor.op_LeftShift.cs
Executa um deslocamento para a esquerda elemento a elemento num 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 Genérico
- TScalar
O tipo dos elementos no tensor.
Parâmetros
- tensor
- Tensor<TScalar>
O tensor para operar.
- shiftAmount
- Int32
A quantidade para deslocar cada elemento no tensor.
Aplica-se a
LeftShiftAssignment<TScalar>(TensorSpan<TScalar>, Int32)
- Origem:
- Tensor.op_LeftShift.cs
- Origem:
- Tensor.op_LeftShift.cs
Executa um deslocamento para a esquerda elemento a elemento num 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 Genérico
- TScalar
O tipo dos elementos no tensor.
Parâmetros
- tensor
- TensorSpan<TScalar>
O tensor para operar.
- shiftAmount
- Int32
A quantidade para deslocar cada elemento no tensor.