Bit of a sticky situation here. Basically, I have about 6 files of x,y,z points (each has something like 200 points in) which are all related to one another. What I am looking to do is make a 3D (splot) of this data, which I can already do, only with lines between the corresponding lines - so line 34 in file 1 is on a line with line 34 in file 2 and so on.
I can tell I may not be explaining it the best here, so I will try and give some context. It is a simulation program which calculates the positions of particles and then applies different forces to them. After every second of simulation it outputs a file, and therefore it would be plotting the paths of these particles in 3D with lines.
In order to solve this I have already thought of giving each particle its own file, however as I have to load each file (splot 'file.csv' etc) each time this would be rather slow - and would increase file IO needed. Any help would be greatfully appreciated.
Thanks!
