次の方法で共有


Tensor.RotateRight メソッド

定義

オーバーロード

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

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

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

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

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

戻り値

例外

宛先が短すぎます。

適用対象

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

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

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

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static System::Numerics::Tensors::Tensor<T> ^ RotateRight(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int rotateAmount);
public static System.Numerics.Tensors.Tensor<T> RotateRight<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int rotateAmount) where T : System.Numerics.IBinaryInteger<T>;
static member RotateRight : ReadOnlyTensorSpan * int -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBinaryInteger<'T>)> (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Function RotateRight(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

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

戻り値

例外

宛先が短すぎます。

適用対象