You can delete an element, row, column, or page within an array. What you can delete depends on how many dimensions the array has. For example, you can delete a row or a column from an array of two or more dimensions. You can delete a page from an array of three or more dimensions.
Complete the following steps to delete elements, rows, columns, or pages in an array.
![]() | Note The index input specifies from which element, row, column, or page you want to start deleting, with 0 being the first. The length input specifies to the number of element, rows, columns, or pages you want to delete. |
Array wired to n-dimension array | Deleting | Complete these steps. |
---|---|---|
1D array | Element(s) | Wire a value 1-n to length. Wire a value 0-n to index. |
2D array | Row(s) | Wire a value 1-n to length. Wire a value 0-n to index (row). |
Column(s) | Wire a value 1-n to length. Wire a value 0-n to index (column). | |
Element(s) | Wire a value 1-n to length. Wire a value 0-n to index (row). Wire a value 0-n to index (column). | |
3D-nD array | Page(s) | Wire a value 1-n to length. Wire a value 0-n to index (page). |
Row(s) | Wire a value 1-n to length. Wire a value 0-n to index (page). Wire a value 0-n to index (row). | |
Column(s) | Wire a value 1-n to length. Wire a value 0-n to index (page). Wire a value 0-n to index (column). | |
Element(s) | Wire a value 1-n to length. Wire a value 0-n to index (page). Wire a value 0-n to index (row). Wire a value 0-n to index (column). |