Vector.SubtractSaturate<T>(Vector<T>, Vector<T>) メソッド

定義

要素ごとの飽和差を計算するために、2 つのベクトルを減算します。

public:
generic <typename T>
 static System::Numerics::Vector<T> SubtractSaturate(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> SubtractSaturate<T>(System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member SubtractSaturate : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Function SubtractSaturate(Of T) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

left
Vector<T>

rightが減算されるベクトル。

right
Vector<T>

leftから減算するベクトル。

返品

leftrightの要素ごとの飽和差。

適用対象