Extracts a rectangular region from a table.
REGION(table, row, rowlen, col, collen, nopad)
table |
- |
Any series or multi-column table. |
row |
- |
An integer. Number of first row of data to copy. |
rowlen |
- |
An integer. Number of rows to copy. If |
col |
- |
An integer. Number of first column of data to copy. |
collen |
- |
An integer. Number of columns to copy. If |
nopad |
- |
Optional. An integer, the zero padding flag. 0: pad with zeros; 1: do not pad with zeros. Defaults to 0. |
A table.
W1: {{ 2, 4, 6, 8},
{ 8, 10, 12, 14},
{14, 16, 18, 20}}
region(W1, 3, 1, 2, 2)
returns the table: {{16, 18}}