Question: How do I combine my vectors to get a big matrix?

Hi, Here is what i have

with(LinearAlgebra):
nodes:=9:
Xfull:=RandomMatrix(nodes):

for i from 1 to nodes do
newXfull(i):=zip(`/`,Column(Xfull,i),Row(Xfull,1)(i)):
end do:

the answers are correct, but it gives me 9 sets of 9x1 matrix. How do I write so that it would give me a 9x9 output? As in, all the answers represented in one big matrix.

OR

If I join it one by one, I wrote << newXfull[1]>|< newXfull[2]>|<newXfull[3]>|< newXfull[4]>|< newXfull[5]>|< newXfull[6]>|< newXfull[7]>|< newXfull[8]>|< newXfull[9]>>

But my number for nodes changes, how do I write it so that it changes accordingly?

Please help. Thanks.

Please Wait...