I want to make a matrix of values as so:
F(0,0) . . . F(1,n)
.
.
.
F(n,1) . . . F(n,n)
I could of course do it like this
list=[]
for i in range(0,n):
for j in range(0,n):
list.append(F(i,j))
a=array(list)
a.reshape(n,n)
But I am curious if there is a more...