Wolfram – Interactive Manipulation
The interface Manipulate supports to display different scenes as parameter changed dynamically. eg: Manipulate[Plot[Sin[a*x], {x, 0, 10}], {a, 1, 5, 1}] If there is no step for variable a, it can vary continuously. Manipulate[Plot[x^a, {x, 0, 10}], {a, 1, 5}] It also lets us set up any number of Read more…