TOC PREV NEXT INDEX

concat_2_arrays, concat_3_arrays, concat_4_arrays

Synopsis

concatenate elements of several arrays or individual scalar primitives into an array

Input Port

in1

prim[]

any scalar primitive or array of such

in2

prim[]

any scalar primitive or array of such

in3

prim[]

any scalar primitive or array of such

in4

prim[]

any scalar primitive or array of such

Parameters

Output Port

out

prim[][N]

N is 2, 3 or 4

Description

These modules concatenate elements of several arrays or individual scalar primitives into an output array. Input arrays may have any dimensionality, but are treated as 1-dimensional, in memory order.
Input arrays can have different total sizes; the size of the output array is the sum of the sizes of the input arrays. The output array contains all elements from the first array, followed by all elements from the second array, and so on.

Input

in1

prim[]. One of the input arrays or scalar primitives.

in2

prim[]. One of the input arrays or scalar primitives.

in3

prim[]. One of the input arrays or scalar primitives.

in4

prim[]. One of the input arrays or scalar primitives.

Parameters

spacing_axis

int. Specifies which axis spacing should be adjusted.

Output Port

none.


Example

Not available

File

v/fld_map.v

See also related modules

interleave_2_arrays, interleave_3_arrays, interleave_4_arrays

TOC PREV NEXT INDEX