VectorBuilderTDense(Int32, FuncInt32, T) Method |
Create a new dense vector and initialize each value using the provided init function.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic Vector<T> Dense(
int length,
Func<int, T> init
)
Parameters
- length Int32
- The length of the vector.
- init FuncInt32, T
- The initialization function.
Return Value
VectorTThe created vector.
See Also