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



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

Syntax

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

Parameters

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

Return Value

A Vector object representing the result of the scalar-vector 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