Method BuildCountingSequence
BuildCountingSequence(double, int)
Get an enumerable of size count, spaced by an interval of delta.
Declaration
public static IEnumerable<float> BuildCountingSequence(double delta, int count)
Parameters
Type | Name | Description |
---|---|---|
double | delta | Interval for the sequence. |
int | count | Size of the sequence. |
Returns
Type | Description |
---|---|
IEnumerable<float> | Sequence of values spaced with delta. |