| Author |
Comment/Response |
Bill Simpson
|
12/13/12 11:02am
In Response To 'Re: Re: PDE with two variable' --------- Ah. You seem to be making progress. Good.
This
http://reference.wolfram.com/mathematica/ref/NDSolve.html
says
NDSolve[eqns, u, {t,tmin,tmax}, {x,xmin,xmax}]
finds a numerical solution to the partial differential equations eqns.
while you are using an extra set of {} like this
NDSolve[eqns, u, {{t,tmin,tmax}, {x,xmin,xmax}}]
Try removing the extra set of {} and see if it works.
URL: , |
|