Question to ArrTranspose()
Posted: Tue Mar 31, 2020 9:41 am
Is there a function (in opposite to ArrTranspose()) that make from a array in form {{1,2,3},{4,5,6},{7,8,9}} a array {{1,4,7},{2,5,8},{3,6,9}}?
www.FiveTechSoft.com
https://fivetechsoft.com/forums/
Code: Select all
ArrTranspose( {{1,2,3},{4,5,6},{7,8,9}} ) //--> {{1,4,7},{2,5,8},{3,6,9}}
//and
ArrTranspose( {{1,4,7},{2,5,8},{3,6,9}} ) //--> {{1,2,3},{4,5,6},{7,8,9}}