DenseVectorCreate(Int32, FuncInt32, Complex) Method |
Create a new dense vector and initialize each value using the provided init function.
Namespace: Altaxo.Calc.LinearAlgebra.ComplexAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static DenseVector Create(
int length,
Func<int, Complex> init
)
Parameters
- length Int32
- The length of the vector.
- init FuncInt32, Complex
- The initialization function for each element.
Return Value
DenseVectorThe created dense vector.
See Also