| Author |
Comment/Response |
jules
|
10/18/11 5:15pm
extending the example in the documentation, why will the graph not draw, your help appreciated.
Manipulate[
With[
{
value = Grid[{
Table[c[i] , {i, 1, n}],
{ListLinePlot[Table[{i, c[i] }, {i, 1, n}]]}}],
controls = Sequence @@ Table[{{c[i], i/10.}, 0, 1}, {i, 1, n}]},
Manipulate[value, controls]
],
{{n, 2}, 1, 10, 1}
]
URL: , |
|