Re: help plot log[f[t]] vs a parameter using an ODE
- To: mathgroup at smc.vnet.net
- Subject: [mg81122] Re: help plot log[f[t]] vs a parameter using an ODE
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Thu, 13 Sep 2007 06:26:01 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <fc85qt$liu$1@smc.vnet.net>
john wrote: <snip> > ParametricPlot[y[t], x[t], {t, 0, 200}] > > generates > > ParametricPlot::pllim: Range specification x[t] is not of the form {x, > xmin, xmax} The first parameter of *ParametricPlot* must be a /list/ of functions. ParametricPlot[{y[t], x[t]}, {t, 0, 200}] <snip> -- Jean-Marc