WolframLang: Animation

By Xah Lee. Date: . Last updated: .

Animation

work in progress
Manipulate

creates a interactive object, where variables can be changed via slider.

it returns a DynamicModule object.

Manipulate

Manipulate[
Plot[Sin[x t], {x, 0, 2 Pi},
PlotRange->{{0, 2 Pi}, {-1, 1}}],
{t, 1, 3}]
wl sine animation 2024-06-28
wl sine animation 2024-06-28
Animate

same as Manipulate, but automatically animate it.

Animate[
Plot[Sin[x t], {x, 0, 2 Pi},
PlotRange->{{0, 2 Pi}, {-1, 1}}],
{t, 1, 3}]

Animate

ListAnimate

generate an animation from a list.

ListAnimate

DynamicModule

DynamicModule

Reference

WolframLang, Graphics Programing