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



x
A CVector object representing the vector on the left of the division operator.
alpha
A complex representing the scalar on the right of the division operator.
Divides a complex vector by a scalar.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Divide( _
   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.Divide(x, alpha)
C# 
public static CVector Divide( 
   CVector x,
   Complex alpha
)
C++/CLI 
public:
static CVector^ Divide( 
   CVector^ x,
   Complex alpha
) 

Parameters

x
A CVector object representing the vector on the left of the division operator.
alpha
A complex representing the scalar on the right of the division operator.

Return Value

A CVector object representing the result of the vector-scalar division.

Requirements

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

See Also

.NET Matrix Library