  | FloatComplexSparseVectorDivide Method | 
            Divides a sparse vector by a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexSparseVector Divide(
	FloatComplexSparseVector x,
	FloatComplex a
)
Public Shared Function Divide ( 
	x As FloatComplexSparseVector,
	a As FloatComplex
) As FloatComplexSparseVector
public:
static FloatComplexSparseVector^ Divide(
	FloatComplexSparseVector^ x, 
	FloatComplex a
)
static member Divide : 
        x : FloatComplexSparseVector * 
        a : FloatComplex -> FloatComplexSparseVector Parameters
- x  FloatComplexSparseVector
 - A sparse vector.
 - a  FloatComplex
 - A scalar.
 
Return Value
FloatComplexSparseVectorA sparse vector containing the quotient.
Remarksu[i] = v[i] / s
See Also