bomvoo
New Member
- Joined
- Nov 16, 2004
- Messages
- 42
Does anybody know a quick way to transpose a 2 dimensional array?
Below is an example of the problem:
Thank you in advance
Regards,
Eduardo
Below is an example of the problem:
Code:
dim T(1 TO 3, 1 TO 2) as double
dim TT(1 TO 2, 1 TO 3) as double
T(1,1)=1.6
T(1,2)=1.5
T(2,1)=2.4
T(2,2)=2.6
T(3,1)=0.2
T(3,2)=0.5
'The question is if anybody knows a function like this:
TT= transpose(T)
'Such that
'TT(1,1)=1.6 (T(1,1))
'TT(1,2)=2.4 (T(2,1))
'TT(1,3)=0.2 (T(3,1))
'TT(2,1)=1.5 (T(1,2))
'TT(2,2)=2.6 (T(2,2))
'TT(2,3)=0.5 (T(3,2))
end sub
Thank you in advance
Regards,
Eduardo