.NET Matrix Library
Divide(Vector,Double) Method
See Also  Send Feedback



x
A Vector object representing the vector on the left of the division operator.
alpha
A double representing the scalar on the right of the division operator.
Divides a real vector by a scalar.

Syntax

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

Parameters

x
A Vector object representing the vector on the left of the division operator.
alpha
A double representing the scalar on the right of the division operator.

Return Value

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