I'm trying to help my girlfriend make an animation for an experiment where basically this group of cells moves across a petri dish and there's a camera tracking their individual positions over time. The data collected is in the form of time intervals and the positions of specifics cells in the group at that time. In thinking of the 5 important values each tuple is in a form like (C,t,X,Y,Z) where C=cell number, t=time, and X,Y, and Z are position. The excel sheet of data has a couple hundred of these tuples for about 10 cells C={1,2,3,..,10} over 40 seconds.
I have seen macros in excel and MATLAB programs where you can graph a scatter plot in 3D space and be able to rotate it and stuff but I am wondering what work is involved in taking this a step farther and having some sort of animation where the points on the scatter plot shift as time increases. Like animate a 3D scatter plot so as a clock runs up to say 20 seconds the points shift as their values change.
Has anyone had experience doing something like this in a programming language or excel(although I assume it would be pretty nasty in VBA).