Tensor.Negate メソッド

定義

オーバーロード

名前 説明
Negate<T>(ReadOnlyTensorSpan<T>)

テンソルに対して要素ごとの単項否定を実行します。

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

テンソルに対して要素ごとの単項否定を実行します。

Negate<T>(ReadOnlyTensorSpan<T>)

ソース:
Tensor.op_UnaryNegation.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_UnaryNegation.cs

テンソルに対して要素ごとの単項否定を実行します。

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

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

否定するテンソル。

返品

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

適用対象

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

ソース:
Tensor.op_UnaryNegation.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_UnaryNegation.cs

テンソルに対して要素ごとの単項否定を実行します。

public:
generic <typename T>
 where T : System::Numerics::IUnaryNegationOperators<T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Negate(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Negate<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IUnaryNegationOperators<T,T>;
static member Negate : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)
Public Function Negate(Of T As IUnaryNegationOperators(Of T, 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の図形は互換性がありません。

適用対象