Tensor.Increment メソッド

定義

オーバーロード

名前 説明
Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

テンソルに対してインクリメントを実行します。

Increment<T>(ReadOnlyTensorSpan<T>)

テンソルに対してインクリメントを実行します。

Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

ソース:
Tensor.op_Increment.cs
ソース:
Tensor.op_Increment.cs

テンソルに対してインクリメントを実行します。

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

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

インクリメントするテンソル。

destination
TensorSpan<T>

++x の結果が書き込まれる変換先。

返品

destination への参照です。

例外

xdestinationの図形は互換性がありません。

適用対象

Increment<T>(ReadOnlyTensorSpan<T>)

ソース:
Tensor.op_Increment.cs
ソース:
Tensor.op_Increment.cs

テンソルに対してインクリメントを実行します。

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
ReadOnlyTensorSpan<T>

インクリメントするテンソル。

返品

++x の結果を含む新しいテンソル。

適用対象