| Author |
Comment/Response |
Bill Simpson
|
01/17/13 12:04pm
Perhaps
In[1]:= a=Array[f,{3,3}]
Out[1]= {{f[1,1],f[1,2],f[1,3]},{f[2,1],f[2,2],f[2,3]},{f[3,1],f[3,2],f[3,3]}}
In[2]:= a[[1]]
Out[2]= {f[1,1],f[1,2],f[1,3]}
In[3]:= MatrixForm[a]
Out[3]//MatrixForm=
(f[1, 1],f[1, 2],f[1, 3]
f[2, 1],f[2, 2],f[2, 3]
f[3, 1],f[3, 2],f[3, 3])
URL: , |
|