Hey @Paulo_Jabardo, thanks for the solution! I tried two methods (Examples below) both return a vector of matrices. How do I convert that vector of matrices into a 3d array? Thanks!
#method 1
result1 = transpose.(array[:,:,i] for i = 1:11)
#method2
result2 = permutedims.(array[:,:,i] for i = 1:2)
Thanks @rdeits , I’m sorry, I couldn’t find in the documentation where it details what ,(2,1,3) represents. Will you please point me to where I can find it? Thank you!