Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » 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
Module: FoundationLite

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
Input value inStart float 0.0f Input Real number that sequence will start from
Input value inCount int 0 - 10 Input Integer number determining number of times inStart input value will be incremented
Input value inStep float 1.0f Input Real number determining value added to inStart input value during each iteration
Output value outValues Array<float>& Output RealArray value result of incrementation within each iteration

See Also