.NET Matrix Library
Addition(Vector,Double) Operator
See Also  Send Feedback


y
A Vector instance on the left side of the addition operator.
alpha
double representing the scalar on the right side of the addition operator.
Adds a real vector and a scalar.

Syntax

Visual Basic (Declaration) 
Overloads Public Operator +( _
   ByVal y As Vector, _
   ByVal alpha As Double _
) As Vector
C# 
public Vector operator +( 
   Vector y,
   double alpha
)
C++/CLI 
public:
Vector^ operator +( 
   Vector^ y,
   double alpha
)

Parameters

y
A Vector instance on the left side of the addition operator.
alpha
double representing the scalar on the right side of the addition operator.

Return Value

A Vector object representing the result of the addition.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library