Click or drag to resize

DoubleComplexVectorDivision(DoubleComplexVector, DoubleComplexVector) Operator

Divides a vector by another vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector operator /(
	DoubleComplexVector v,
	DoubleComplexVector w
)

Parameters

v  DoubleComplexVector
The left-hand vector.
w  DoubleComplexVector
The right-hand vector.

Return Value

DoubleComplexVector
A vector containing the quotient.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two vectors are not the same length.
Remarks
u[i] = v[i] / w[i]
See Also