Multiple DE solutions in ParametricPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg102284] Multiple DE solutions in ParametricPlot
- From: Narasimham <mathma18 at hotmail.com>
- Date: Tue, 4 Aug 2009 04:27:10 -0400 (EDT)
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
- Follow-Ups:
- Re: Multiple DE solutions in ParametricPlot
- From: "Kurt" <ekt@fastmail.net>
- Re: Multiple DE solutions in ParametricPlot
- From: Patrick Scheibe <pscheibe@trm.uni-leipzig.de>
- Re: Multiple DE solutions in ParametricPlot