Back to Adaptive Vision Library website

You are here: Start » Function Reference » Array Composition » AvsFilter_JoinArrays

AvsFilter_JoinArrays


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Concatenates the input arrays one after another.

Syntax

void avs::AvsFilter_JoinArrays
(
	const atl::Array<Type>& inArray1,
	const atl::Array<Type>& inArray2,
	const atl::Array<Type>& inArray3,
	const atl::Array<Type>& inArray4,
	atl::Array<Type>& outJoinedArray
)

Parameters

Name Type Default Description
inArray1 const Array<Type>& First array to be joined
inArray2 const Array<Type>& Second array to be joined
inArray3 const Array<Type>& Third array to be joined
inArray4 const Array<Type>& Fourth array to be joined
outJoinedArray Array<Type>& Joined array

Hints

  • If you need more than four input arrays, use a sequence of several instances of this filter.

Examples

inArray1 = {2,0,2}
inArray2 = {4,5}
outArray = {2,0,2,4,5}

See Also

AppendToArray, CreateArray, InsertToArray, JoinArrays_OfArray, JoinArrays_OfLoop