New to Mathematica, but I'm stuck on something that seems like it should be simple ... so I suspect I'm missing something fundamental. Here's the issue simplified. I'd like to plot 2 points on a circle. These points change with time, so I'd like to animate the graphic over a time series of 2.
Here are the points:
m = {{{-0.755948, 0.654632}, {-0.625139, 0.780514}}, {{-0.821873, 0.56967}, {-0.766458, 0.642295}}}
m[[1]] is time 1; m[[2]] is time 2;
Here's my one-line program that fails in every permutation I've tried:
ListAnimate[Table[Graphics[Circle[], Point[m[[t]]]], {t, 1, 2}]]
Here's the error message for the program permutation listed above: "An improperly formatted option was encountered while reading a Graphics. The option was not in the form of a rule."
Any help would be most appreciated. Thanks!