For diagnostic purposes, I want to print a matrix (an array of arrays). To do this with a loop means executing a trace command multiple times, which—to my understanding—precludes the possibility of printing multiple table cells to a single row.
(When coding trace(x); trace(y);
, a line break falls between x
and y
.)
What can I do?