Click or drag to resize

VectorInsertRange Method

Inserts the elements of a collection into the Vector at the specified index.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public void InsertRange(
	int index,
	IEnumerable<double> values
)

Parameters

index
Type: SystemInt32
The zero-based index at which the new elements should be inserted.
values
Type: System.Collections.GenericIEnumerableDouble
The collection whose elements should be inserted into the Vector.
See Also