Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Real » CreateRealSequence
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Creates an arithmetic sequence of real numbers.
Syntax
void fil::CreateRealSequence ( float inStart, int inCount, float inStep, ftl::Array<float>& outValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inStart | float | 0.0f | Input Real number that sequence will start from | |
![]() |
inCount | int | 0 - ![]() |
10 | Input Integer number determining number of times inStart input value will be incremented |
![]() |
inStep | float | 1.0f | Input Real number determining value added to inStart input value during each iteration | |
![]() |
outValues | Array<float>& | Output RealArray value result of incrementation within each iteration |
See Also
- CreateIntegerSequence – Creates an arithmetic sequence of integer numbers.