Vector<T>.Addition(Vector<T>, Vector<T>) Operátor

Definice

Sečte dva vektory dohromady.

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)

Parametry

left
Vector<T>

První vektor, který se má přidat.

right
Vector<T>

Druhý vektor, který se má přidat.

Návraty

Sečtený vektor.

Výjimky

.NET 5 a novější: Typ T se nepodporuje.

Poznámky

Metoda Addition definuje operaci sčítání pro Vector<T> objekty.

Platí pro