Use the Array functions to create and manipulate arrays. Only fixed-size, one-dimensional arrays are supported in the LabVIEW FPGA Module. You can create or return fixed-size arrays with the FPGA Module.
 | Note This palette is specific to FPGA targets and contains a subset of the VIs and functions that are on this palette when you edit a Windows or RT target VI. |
| Palette Object | Description |
|---|
| Array Constant | Use this constant to supply a constant array value to the block diagram. |
| Array Size | Returns the number of elements in each dimension of array. |
| Array Subset | Returns a portion of array starting at index and containing length elements. |
| Array To Cluster | Converts a 1D array to a cluster of elements of the same type as the array elements. Right-click the function and select Cluster Size from the shortcut menu to set the number of elements in the cluster. |
| Build Array | Concatenates multiple arrays or appends elements to an n-dimensional array. |
| Cluster To Array | Converts a cluster of elements of the same data type to a 1D array of elements of the same data type. |
| Decimate 1D Array | Divides the elements of array into the output arrays, placing elements into the outputs successively. |
| Delete From Array | Deletes an element or subarray from n-dim array and returns the edited array in array w/ subset deleted and the deleted element or subarray in deleted portion. |
| Index Array | Returns the element or subarray of n-dimension array at index. |
| Initialize Array | Creates an n-dimensional array in which every element is initialized to the value of element. |
| Insert Into Array | Inserts an element or subarray into n-dim array at the point you specify in index. |
| Interleave 1D Arrays | Interleaves corresponding elements from the input arrays into a single output array. |
| Replace Array Subset | Replaces an element or subarray in an array at the point you specify in index. |
| Reshape Array | Changes the dimensions of an array according to the values of dimension size 0..m-1. |
| Reverse 1D Array | Reverses the order of the elements in array. |
| Rotate 1D Array | Rotates the elements of array the number of places and in the direction indicated by n. |
| Split 1D Array | Divides array at index and returns the two portions. |