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