Vector<T>.Addition(Vector<T>, Vector<T>) 演算子

定義

2 つのベクトルを加算します。

public:
 static System::Numerics::Vector<T> operator +(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> operator + (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member ( + ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( + ) : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator + (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

パラメーター

left
Vector<T>

加算する最初のベクトル。

right
Vector<T>

加算する 2 番目のベクトル。

戻り値

加算結果のベクトル。

例外

.NET 5 以降: 型 T はサポートされていません。

注釈

メソッドは Addition 、オブジェクトの加算操作を Vector<T> 定義します。

適用対象