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