Click or drag to resize

DoubleComplexSparseVector(DoubleComplex, IndexArray) Constructor

Constructs a DoubleComplexSparseVector instance from the given data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexSparseVector(
	DoubleComplex[] nonZeroEntries,
	IndexArray indices
)

Parameters

nonZeroEntries  DoubleComplex
The non-zero entries of the sparse vector.
indices  IndexArray
The indices of the non-zero entries such that the index of ith non-zero entry is
C#
indices[i]
Remarks
The input data is copied.
See Also