Go to the first, previous, next, last section, table of contents.
Many of the manipulation routines available for matrices are also
applicable to a single row of integers. In the following list, the
symbols a and b are of the class integer_row
and
n, i and j are integers.
integer_row a();
a.init();
integer_row a(i);
a.init(i);
integer_row a(b);
integer_row a(&b);
a.init(b);
a.init(&b);
int * ilist;
integer_row a(ilist, n);
a.init(ilist, n);
int * a.data_array();
a.del_col(i);
a.del_col(i, j);
a ^= b;
tmp = a; a = b; b = tmp;
.
b = a.swap_col(i, j);
a.insert_col(i);
Go to the first, previous, next, last section, table of contents.