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 | ||
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 read (default 1) | |
Allowed: | Int | ||
nrow | in | Number of rows to read (default -1 means till the end) | |
Allowed: | Int | ||
rowincr | in | Increment in rows to read (default 1) | |
Allowed: | Int |
t:=table("W53.MS") data:=t.getcolslice("DATA", [1,1], [2,1]) data::shape # [2 1 1920]