Functions Index :: A :: ArrayCreate

[<< up one level]

Module:

array :: core

Definition:

ArrayCreate(val "elm01", val "elm02", val "elm03", val "elm04", ... , val "elm60")

Description:

Returns a new array from the supplied arguments, in the order provided.

The function accepts up to 60 arguments. For arrays with > 60 elements one must use multiple function calls for 60 elements' blocks and join the blocks with the ArrayJoin or ArrayInsRange functions.

Notes and conditions on arguments relations:

1] If none argument is supplied, the function returns an empty array (ie an array with zero elements).

Examples:

a1 = ArrayCreate(2, 4, 3.5, 4.12, 12.01)

c1 = AviSource( ... )

c2 = AviSource( ... )

c3 = AviSource( ... )

c4 = AviSource( ... )

a2 = ArrayCreate(c1, c1.Levels(0,1,255,0,200), c2, c3, c4, c4.Tweak(hue=10))

 

[<< top]