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


x
A CVector object representing the vector on the left of the division operator.
y
A CVector object representing the vector on the right of the division operator.
Divides two real vectors.

Syntax

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

Parameters

x
A CVector object representing the vector on the left of the division operator.
y
A CVector object representing the vector on the right of the division operator.

Return Value

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

Exceptions

ExceptionDescription
SizeMismatchExceptionx, y are not of the same length.

Requirements

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

See Also

.NET Matrix Library