You can use "\n"
to break up a trace statement into multiple lines. I'm not quite sure if this is what you were asking in your question.
If your using flex you can use ObjectUtil.toString() to convert an object (nested arrays) into a string representation.
If your asking how to print one line with multiple traces I suggest converting to a string first. imagine you have a matrix broken into a rows array. Note this code isn't tested there may be typos. It also works under the assumption that your outer array contains an array of String objects, this might not be the case but It should help and can be converted for other data types.
var rowText:String = "";
trace ("BEGIN tracing rows");
for each (var row:Array in rows)
{
for each (var value:String in row)
{
rowText = rowText + value + " ";
}
trace (rowText);
}
trace("END tracing rows");