Question: listdensityplot small bug

a:=Matrix(10,10,0):
b:=Matrix(10,10,0):

a[1,5]:=1:

b[10,5]:=1:

animate(listdensityplot,[a*k+b*(1-k),smooth=true],k=0..1)

 

compared with the range option in animate

 

animate(listdensityplot,[a*k+b*(1-k),smooth=true,range=0..1],k=0..1)

 

My guess is there something happening with the default animation that causes the anomaly.

Please Wait...