| Original Message (ID '163248') By Michael: |
| Animate "localizes" the variable t, so that the t in the expression u is not changed by Animate. Try
Animate[Plot[Evaluate[u /. t -> tt], {x, 0, 1}], {tt, 0, 1},
AnimationRunning -> False]
(The Evaluate is optional.) |
|