Back to Adaptive Vision Library website

You are here: Start » Function Reference » Real » CreateRealSequence

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:avl

Creates an arithmetic sequence of real numbers.

Syntax

void avl::CreateRealSequence
(
	float inStart,
	int inCount,
	float inStep,
	atl::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