I have two "matrix" [X] = [X1,X2,...,Xn]
and [T](Xi) = [Ti1,Ti2,...,Tim]
with Xi
and Tij
are reals numbers. Xi
describe the position of point X (one dimensional), [T](Xi)
describe the velocity of Xi
.
I want to create a double array A in Python so: A=A[Xi][Tj]
.
By example:
A[0][i] = [T](X1) = T1j = [T11,T12,...,T1m]
and
A[1][i] = [T](X2) = T2j = [T21,T22,...,T2m]
I tried:
tableA = [X,T]
but that does not work well.