  | NMathFunctionsScatter(FloatComplexSparseVector, Int32) Method | 
            Scatters the elements of the compressed sparse vector x
            to a full storage vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexVector Scatter(
	FloatComplexSparseVector x,
	int outputVectorLength
)
Public Shared Function Scatter ( 
	x As FloatComplexSparseVector,
	outputVectorLength As Integer
) As FloatComplexVector
public:
static FloatComplexVector^ Scatter(
	FloatComplexSparseVector^ x, 
	int outputVectorLength
)
static member Scatter : 
        x : FloatComplexSparseVector * 
        outputVectorLength : int -> FloatComplexVector Parameters
- x  FloatComplexSparseVector
 - A sparse vector.
 - outputVectorLength  Int32
 - The length of the output full storage vector.
            
 
Return Value
FloatComplexVectorFull storage vector version of 
x.
See Also