Animace

> restart():

> with(plots):

Pomocí animací lze velmi názorně předvést význam parametrů na různých místech ve vyjádření funkce.

animate (funkce,rozsah osy x,rozsah parametru,options)

Parabola

> animate((x-a)^2,x=-10..10,a=0..5,frames=10,color=blue, title='Horizontalni');

[Maple Plot]

> animate(10*a+x^2,x=-10..10,a=0..5,frames=10,color=blue, title='Vertikálni');

[Maple Plot]

> animate(a*x^2,x=-10..10,a= 1..5,frames=10,color=blue, title='Oteviráni');

[Maple Plot]

Sinus

> animate(a*sin(x),x=-2*Pi..2*Pi,a=1..5,frames=30,color=blue, title='Amplituda');

[Maple Plot]

> animate(sin(x-a),x=-2*Pi..2*Pi,a=0..3*Pi/2,frames=30,color=blue, title='Posun');

[Maple Plot]

> animate(sin(a*x),x=-2*Pi..2*Pi,a=1..5,frames=30,color=blue, title='Frekvence');

[Maple Plot]