Tensor.RotateLeft メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
RotateLeft<T>(ReadOnlyTensorSpan<T>, Int32) |
指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。 |
RotateLeft<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>) |
指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。 |
RotateLeft<T>(ReadOnlyTensorSpan<T>, Int32)
指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。
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
パラメーター
テンソル
- rotateAmount
- Int32
スカラーとして表される、回転するビット数。
戻り値
例外
宛先が短すぎます。
適用対象
RotateLeft<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>)
指定したテンソル内の数値の左の要素ごとの回転を、指定した回転量で計算します。
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
パラメーター
テンソル
- rotateAmount
- Int32
スカラーとして表される、回転するビット数。
- destination
- TensorSpan<T>
戻り値
例外
宛先が短すぎます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET