Tensor.Increment メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
| 名前 | 説明 |
|---|---|
| Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
テンソルに対してインクリメントを実行します。 |
| Increment<T>(ReadOnlyTensorSpan<T>) |
テンソルに対してインクリメントを実行します。 |
Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
テンソルに対してインクリメントを実行します。
public:
generic <typename T>
where T : System::Numerics::IIncrementOperators<T> static System::Numerics::Tensors::TensorSpan<T> ^ Increment(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Increment<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IIncrementOperators<T>;
static member Increment : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IIncrementOperators<'T>)
Public Function Increment(Of T As IIncrementOperators(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
型パラメーター
- T
テンソル内の要素の型。
パラメーター
インクリメントするテンソル。
- destination
- TensorSpan<T>
++x の結果が書き込まれる変換先。
返品
destination への参照です。
例外
xとdestinationの図形は互換性がありません。
適用対象
Increment<T>(ReadOnlyTensorSpan<T>)
テンソルに対してインクリメントを実行します。
public:
generic <typename T>
where T : System::Numerics::IIncrementOperators<T> static System::Numerics::Tensors::Tensor<T> ^ Increment(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Increment<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IIncrementOperators<T>;
static member Increment : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IIncrementOperators<'T>)> (requires 'T :> System.Numerics.IIncrementOperators<'T>)
Public Function Increment(Of T As IIncrementOperators(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
型パラメーター
- T
テンソル内の要素の型。
パラメーター
インクリメントするテンソル。
返品
++x の結果を含む新しいテンソル。