Click or drag to resize

GenerateUniformMap2SequenceT Method

Generate a sample sequence by sampling a function at sample pairs from a probability distribution, uniform between 0 and 1. Faster than other methods but with reduced guarantees on randomness.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IEnumerable<T> UniformMap2Sequence<T>(
	Func<double, double, T> map
)

Parameters

map  FuncDouble, Double, T
The function to sample.

Type Parameters

T
The type of the generated values.

Return Value

IEnumerableT
An infinite sequence of generated values.
See Also