MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Multiple DE solutions in ParametricPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg102254] Re: [mg102284] Multiple DE solutions in ParametricPlot
  • From: Patrick Scheibe <pscheibe at trm.uni-leipzig.de>
  • Date: Tue, 4 Aug 2009 06:21:49 -0400 (EDT)
  • References: <200908040827.EAA26787@smc.vnet.net>

Hi,

what about

ParametricPlot[Evaluate[Through[#[t]] & /@ XY], {t, 0, 5}]

?
Cheers
Patrick

On Tue, 2009-08-04 at 04:27 -0400, Narasimham wrote:
> How may it be possible to get several ParametricPlots together? TIA
> for pointing errors here.
> 
> XY = {x, y} /.
>   First /@ (NDSolve[{y'[t] + x[t] 2 == 0, -x'[t] + y[t]^3 == 2,
>         x[0] == #1, y[0] == #2},
>        {x, y}, {t, 0, 3.4}] & @@@ {{-2.1, 0.8}, {.5, .6}, {1, -.2}})
> 
> ParametricPlot[Evaluate[#[t] & /@ XY], {t, 0, 3.4}]
> 
> Regards
> Narasimham
> 



  • Prev by Date: Re: Windonws keyboard shortcut to change between open windows in
  • Next by Date: Re: Windonws keyboard shortcut to change between open windows in
  • Previous by thread: Multiple DE solutions in ParametricPlot
  • Next by thread: Re: Multiple DE solutions in ParametricPlot