Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | utility | |
Module | table | |
Tool | table |
columnname | in | Name of column | |
Allowed: | String | ||
value | in | Array | |
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 | ||
startrow | in | First row to put (default 1) | |
Allowed: | Int | ||
nrow | in | Number of rows to put (default -1 means till the end) | |
Allowed: | Int | ||
rowincr | in | Increment in rows to put (default 1) | |
Allowed: | Int |
t:=table("tcal",readonly=F) # successful read/write open of table tcal : 9 columns, 11 rows gain:=t.getcolslice("Gain", [1,1,1,6,1], [1,1,1,6,20]) gain:=1+0i t.putcolslice("Gain", gain, [1,1,1,6,1], [1,1,1,6,20]) t.flush()