Question: how to make animations using contour plots

Hire There: I am trying to make a contourplot animation of the function u(x,y,t)=exp(-Pi*Pi*t)*sin(2*Pi*x)*sin(2*Pi*y),defined in [0,1]X[0,1] I tried this a := proc (t) densityplot(proc (x, y) options operator, arrow; exp((-1)*Pi*Pi*t)*sin(2*Pi*x)*sin(2*Pi*y) end proc, 0 .. 1, 0 .. 1, axes = frame, style = PATCHNOGRID, colorstyle = HUE, numpoints = 6400) end proc display(seq(a(t), t = 0 .. 1), insequence = true, axes = framed); but it seems that it is not working I really appreciate your help
Please Wait...