//Plot tracking data from a results table zeroed //The required format is as generated by the Manual Tracking plugin //http://rsbweb.nih.gov/ij/plugins/track/track.html //assuming Results table column headings: Track > Slice > X > Y //some variables Track = 0; result = 1; //Plot the graph Plot.create("Scatter Plot", "X", "Y"); //You may want to determine your own limits in some way here Plot.setLimits(-250, 250, -250, 250); //Get number of tracks for (a=0; aTrack) { Track = getResult("Track",a); } else{}; } //Work though the data a track at a time for (b=1; b<(Track+1); b++) { x = newArray(); y = newArray(); //get first x and y value x_0 = getResult("X", result); y_0 = getResult("Y", result); for (i=result; i