 | FloatComplexSparseVectorDivision Operator |
Divides a sparse vector by a scalar.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexSparseVector operator /(
FloatComplexSparseVector v,
FloatComplex a
)
Public Shared Operator / (
v As FloatComplexSparseVector,
a As FloatComplex
) As FloatComplexSparseVector
public:
static FloatComplexSparseVector^ operator /(
FloatComplexSparseVector^ v,
FloatComplex a
)
static let inline (/)
v : FloatComplexSparseVector *
a : FloatComplex : FloatComplexSparseVectorParameters
- v FloatComplexSparseVector
- A sparse vector.
- a FloatComplex
- A scalar.
Return Value
FloatComplexSparseVectorA sparse vector containing the quotient.
Remarksu[i] = v[i] / s
See Also