Re: Manipulate - ODE
- To: mathgroup at smc.vnet.net
- Subject: [mg83890] Re: Manipulate - ODE
- From: Szabolcs Horvát <szhorvat at gmail.com>
- Date: Mon, 3 Dec 2007 07:12:21 -0500 (EST)
- References: <fj0mu4$iob$1@smc.vnet.net>
Robert Pigeon wrote: > Hello all, > > I have an ODE that I plot using Manipulate. My ODE has two > parameters ( a and b). In the manipulate window I can play with each > parameter showing the effect on the graph. I would like to show the ratio a > / b in the manipulate window, so changing "a" or "b" I can see the ratio > changing (not has a graph, just the number a / b). How could I incorporate > that changing ratio in the manipulate window ? You could use something similar to this: Manipulate[ Column[{Plot[Sin[a x], {x, 0, 10}], a}, Center], {a, 1, 10}] -- Szabolcs