Dan:

FYI, to plot the soln to

x'=x+y+t,   x(0) =1,
y'=x-y,         y(0) =0,

for 0<t<1, you can use the SAGE commands

sage: f = lambda x,y,t: x+y+t
sage: g = lambda x,y,t: x-y
sage: vals = eulers_method_2x2(f, g, 0, 1, 0, 1/10, 1, method="none")
sage: soln_plot = line([[x[0],x[1]] for x in vals])
sage: show(soln_plot)

If the plot isn't smooth enough, let h=1/10 be a smaller value.


On Thu, May 8, 2008 at 4:32 AM, Dan Drake <[EMAIL PROTECTED]> wrote:
> I'm teaching ODEs right now and I'd like to plot the usual sort of
> solution to a 2-by-2 linear DE system, but the following doesn't work:
>
>  sage: evec = vector([1,2])
>  sage: var('t')
>  sage: parametric_plot( exp(-t) * evec, 0, 2)
>
> The traceback's complaint is "<type 'exceptions.TypeError'>: function
> takes at most 1 positional arguments (2 given)".
>
> I know I could manually do (exp(-t), 2*exp(-t)), but the above form
> seems so natural. Is there a way to get that to work?
>
> Dan
>
> --
> ---  Dan Drake <[EMAIL PROTECTED]>
> -----  KAIST Department of Mathematical Sciences
> -------  http://math.kaist.ac.kr/~drake
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.6 (GNU/Linux)
>
> iD8DBQFIIrq3r4V8SljC5LoRAuNrAKC3rfn26RxH6O+A4x1Sw2xXn4YIiQCg1E5k
> JZc870W62/eLMer54/vTJwE=
> =Cj2B
> -----END PGP SIGNATURE-----
>
>

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to