Click or drag to resize

DSequenceUnfold(Int32, Double, FuncDouble, Double) Method

Creates a sequence by unfolding an initial state by a function.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public static DSequence Unfold(
	int size,
	double seed,
	Func<double, double> unfold
)

Parameters

size  Int32
The size of the sequence.
seed  Double
First value in the sequence.
unfold  FuncDouble, Double
The generating function.

Return Value

DSequence
The sequence unfolded from the initial state and the function.
See Also