| Author |
Comment/Response |
Chris Young
|
01/21/12 05:02am
For some reason, the ListPlot has to be kept separate from the values:
Clear[c];
Manipulate[
With[
{
values = Table[c[i], {i, 1, n}],
controls = Sequence @@ Table[{{c[i], 0.5}, 0, 1, 0.1}, {i, 1, n}]
},
Manipulate[
Column[
{
values,
ListLinePlot[Evaluate @ values]
}
],
controls
]
],
{n, 4, 10, 1}
]
Attachment: NestedManipulatePlot.nb, URL: IntuMath@comcast.net, |
|