次の方法で共有


Tensor.RotateLeft メソッド

定義

オーバーロード

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

指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。

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

指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。

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

ソース:
TensorExtensions.cs
ソース:
TensorExtensions.cs

指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

テンソル

rotateAmount
Int32

スカラーとして表される、回転するビット数。

戻り値

例外

宛先が短すぎます。

適用対象

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

ソース:
TensorExtensions.cs
ソース:
TensorExtensions.cs

指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static System::Numerics::Tensors::TensorSpan<T> ^ RotateLeft(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int rotateAmount, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> RotateLeft<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 RotateLeft : ReadOnlyTensorSpan * int * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Function RotateLeft(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)

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

テンソル

rotateAmount
Int32

スカラーとして表される、回転するビット数。

destination
TensorSpan<T>

戻り値

例外

宛先が短すぎます。

適用対象