I usually make a matrix like this
from Numeric import *
A=zeros([3,3])
print str(A[0,1]) #access an element
I would like to store a pair of values in each element, that is have a matrix where the (0,0) element is (2.3, 2.4), the (0,1) element is (5.6,6.7), etc.
Is this possible? I would like to access it using something like
A[0,1][0]
and
A[0,1][1]
Thanks!
Dave