Array and matrix dimension

 

Anyone can help me? In my EA, I have to manage a matrix 20x20 (rows,columns), but it seams that is not possible to store more than a certain number of data.

Did you know Why? Or how I can increase the possibility of matrix or array dimension?

Thank you.

 
maxbikertwin:

Anyone can help me? In my EA, I have to manage a matrix 20x20 (rows,columns), but it seams that is not possible to store more than a certain number of data.

Did you know Why? Or how I can increase the possibility of matrix or array dimension?

Thank you.

This seems improbable to me. I think the array size can be massive. Show us some code that doesn't work.
 
maxbikertwin:
Anyone can help me? In my EA, I have to manage a matrix 20x20 (rows,columns), but it seams that is not possible to store more than a certain number of data.
A 20x20 matrix can ONLY store a "certain number of data" Exactly 400 items, no more. A[][20] can be resized with ArrayResize to set or change the first dimension. If you're having problems, post YOUR code - no mind readers here.