Click or drag to resize

DoubleComplexVector(Int32, DoubleComplex, DoubleComplex) Constructor

Constructs a DoubleComplexVector instance with the given length. Values are initialized starting with the given initial value, incremented by the specified amount for each element in the vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexVector(
	int length,
	DoubleComplex initVal,
	DoubleComplex increment
)

Parameters

length  Int32
A non-negative value for the length.
initVal  DoubleComplex
An initial value.
increment  DoubleComplex
The increment.
Remarks
The ith element = initialValue + i * increment;
See Also