.NET Matrix Library
Add(CVector,Complex) Method
See Also  Send Feedback



x
A CVector instance representing the vector to add with the scalar.
alpha
A complex value representing the scalar to add with the vector.
Adds a vector with a scalar.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Add( _
   ByVal x As CVector, _
   ByVal alpha As Complex _
) As CVector
Visual Basic (Usage)Copy Code
Dim x As CVector
Dim alpha As Complex
Dim value As CVector
 
value = CVector.Add(x, alpha)
C# 
public static CVector Add( 
   CVector x,
   Complex alpha
)
C++/CLI 
public:
static CVector^ Add( 
   CVector^ x,
   Complex alpha
) 

Parameters

x
A CVector instance representing the vector to add with the scalar.
alpha
A complex value representing the scalar to add with the vector.

Return Value

A CVector 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