Description
A table row is a record containing the values of a single row for
all or optionally just specified
columns from a table. In constructing the tablerow tool, one
can specify which columns are to be included or excluded.
Tool functions then allow getting and putting of table rows.
Example
include "table.g"
vis:=table("3C273XC1.MS", readonly=T);
vis.summary();
columns:=["TIME", "UVW", "DATA"];
visrow:=tablerow(vis, columns);
nrows:=vis.nrows();
for (irow in 1:nrows) print irow, visrow.get(irow);
visrow.close();