I am a beginner in Mathematica. My question is: I have huge amount of x,y and z co-ordinates in separate lists named XCORD,YCORD,ZCORD and I want to combine them in one list
Example:
If the x co-oridinates list is given by XCORD = {x1,x2,x3}
, the y co-ordinates list byYCORD = {y1,y2,y3}
and the z co-ordinates list by ZCORD = {z1,z2,z3}
, I would like to have a resulting list of co-ordinates that looks like this:
{{x1,y1,z1},{x2,y2,z2},{x3,y3,z3}}