Deila með


Tensor.UnsignedRightShiftAssignment Operator

Definition

Overloads

Name Description
UnsignedRightShiftAssignment<TScalar>(Tensor<TScalar>, Int32)
UnsignedRightShiftAssignment<TScalar>(TensorSpan<TScalar>, Int32)

Performs in-place element-wise logical right shift on a tensor.

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

Source:
Tensor.op_UnsignedRightShift.cs
public:
generic <typename TScalar>
 where TScalar : System::Numerics::IShiftOperators<TScalar, int, TScalar> static void op_UnsignedRightShiftAssignment(System::Numerics::Tensors::Tensor<TScalar> ^ tensor, int shiftAmount);
public static void op_UnsignedRightShiftAssignment<TScalar>(System.Numerics.Tensors.Tensor<TScalar> tensor, int shiftAmount) where TScalar : System.Numerics.IShiftOperators<TScalar,int,TScalar>;
static member op_UnsignedRightShiftAssignment : 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_UnsignedRightShiftAssignment(Of TScalar As IShiftOperators(Of TScalar, Integer, TScalar)) (tensor As Tensor(Of TScalar), shiftAmount As Integer)

Type Parameters

TScalar

Parameters

tensor
Tensor<TScalar>
shiftAmount
Int32

Applies to

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

Source:
Tensor.op_UnsignedRightShift.cs

Performs in-place element-wise logical right shift on a tensor.

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

Type Parameters

TScalar

Parameters

tensor
TensorSpan<TScalar>
shiftAmount
Int32

The amount to shift each element in the tensor.

Applies to