Why does this work (displays the curve):
Graphics[Plot[Sin[x], {x, 0, Pi}]]
and this doesn't (no curve)
Graphics[Plot[Sin[a x], {x, 0, Pi}], {Slider[a, 0, 4]}]
?
I would like to work without Manipulate.
|
|
|
You can make the slider to appear as part of the plot:
And even develop something more elaborate like this:
|
||||
|
|
|
It doesn't work for a few reasons:
Additionally, you don't need the
You need to set |
|||||||||
|