Lets say i have array like this :
d= [[1.254,3.458,9.874][5.32,3.35,4.54][1.121,8.121,9.45][7.1215,9.454,8.14].... and etc.]
How i can divide d[0] [2] element with d[0] [2], d[1] [2],d[2] [2], d[3] [2] ....... and etc? I will explain it by using numbers:
9.874(d[0] [2])/9.874(d[0] [2])
9.874(d[0] [2])/4.45(d[1] [2])
9.874(d[0] [2])/9.45(d[2] [2])
9.874(d[0] [2])/8.14(d[3] [2]) ........ and etc.
And i want that my result would be in array :
Result = [1,2.21,1.04,1.21,... and etc.]
Or (if its easier) result can be added to current array :
d= [[1.254,3.458,9.874,1][5.32,3.35,4.54,2.21][1.121,8.121,9.45,1.04][7.1215,9.454,8.14,1.21].... and etc.]
As you can see result is the last array of array element:
d[0] [3] = 1, d[1] [3] = 2.21, d[2] [3]=1.04, d[3] [3]=1.21
If anyone need more explanation please write in a comment section dont add -1 :(
0 2is a syntax error, not a valid array index, and numbers are not functions that can be called.