Synopsis
putcellslice(columnname, rownr, value, blc, trc, incr)
Description
A cell is the value at one row in one column. It must be an array.
The slice must be specified as blc, trc with an optional stride.
In blc and trc -1 can be used to indicate all values for a dimension
(-1 in blc is equivalent to 1, so -1 is especially useful for trc).
Arguments
columnname |
in |
Name of column |
|
|
Allowed: |
String |
rownr |
in |
Row number, starting at 1 |
|
|
Allowed: |
Int |
value |
in |
Value |
blc |
in |
Bottom left corner (e.g. [1,1,1] is start of 3D array) |
|
|
Allowed: |
Vector of Ints |
trc |
in |
Top right corner |
|
|
Allowed: |
Vector of Ints |
incr |
in |
Stride (defaults to 1 for all axes) |
|
|
Allowed: |
Vector of Ints |