coordinates2[i][0]= Double.parseDouble(text2.substring(30,38));//X
coordinates2[i][1]= Double.parseDouble(text2.substring(38,46));//Y
coordinates2[i][2]= Double.parseDouble(text2.substring(46,56));//Z
Can I do this:
coordinates2[j]= coordinates2[0]+ coordinates2[1]+ coordinates2[2];
Is it possible to add them all together ?