i have an array
weights[16][60]
16 rows of 60 columns
if you are changing indiviual elements it goes from weights[0][0] to weights[15][59] right?
see if im using them in a loop
for instance
]for(int i = 0; i < 16; i++)
{
so each element is used would it be 0 to i < 16 or 0 to i < 15?