Divides a vector by another vector.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatComplexVector operator /(
	FloatComplexVector v,
	FloatComplexVector w
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	v As FloatComplexVector, _
	w As FloatComplexVector _
) As FloatComplexVector
Visual C++
public:
static FloatComplexVector^ operator /(
	FloatComplexVector^ v, 
	FloatComplexVector^ w
)

Parameters

v
Type: CenterSpace.NMath.Core..::.FloatComplexVector
The left-hand vector.
w
Type: CenterSpace.NMath.Core..::.FloatComplexVector
The right-hand vector.

Return Value

A vector containing the quotient.

Remarks

u[i] = v[i] / w[i]

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the two vectors are not the same length.

See Also