Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with using the contour function with differential equations

Status
Not open for further replies.

adityagaddam

Computer
Sep 26, 2005
5
Hi,

I am trying to draw several solutions to a different equation. I have the following in MATLAB

>>eqn = 'Dy = (-exp(y))/((t*exp(y) - sin(y)))';

>>dsolve(eqn, 't')
Warning: Explicit solution could not be found; implicit solution returned.
> In dsolve at 312
ans =

t+exp(-y)*cos(y)-exp(-y)*C1 = 0

>>f = @(t, y) (-t)/(exp(-y)*cos(y)-exp(-y)); (solved for C1)
>>[T, Y] = meshgrid(-1:0.1:4, 0:0.1:3); (ranges were given)
>>contour(T, Y, f(T, Y), 30, 'k')

When I do the last contour instruction however, I get an error saying:
"??? Error using ==> mtimes
Inner matrix dimensions must agree."

I tried switching around ranges but I don't see what's wrong with the commands I have.

Any help or ideas is appreciated.

Thanks,
Aditya
 
Replies continue below

Recommended for you

Without having trying this I have a quick observation based on the code.

f = @(t, y) (-t)/(exp(-y)*cos(y)-exp(-y)); (solved for C1)

looks like you are attempting matrix / and * instead of maybe point by point. Try ./ and .* instead.
 
Well, it's sort of better now. It does SOMETHING for contour(T, Y, f(T, Y), 30, 'k'), but then errors out saying :

Warning: Divide by zero.
> In @(t, y) (-t)./(exp(-y).*cos(y)-exp(-y))
??? Error using ==> contourc
Contour levels must be finite.

Warning: Error occurred while evaluating listener callback.
> In contour at 66

I am guessing it doesn't like the dividing by zero and then goes downhill from there?

Any ideas?

Thanks,
Aditya
 
Try a hack. It may get you close, or put a switch in you function to test for divide by zer and supply the correct answer instead.

The eps hack:
f = @(t, y) (-t)/(eps+exp(-y)*cos(y)-exp(-y));
 
The eps hack worked, but all the curves are squished to the bottom of the plot, would the switch in the function work better? ifso, how would you do this switch?

Thanks,
Aditya
 
I am sorry, I was doing something else wrong, but I really appreciate you quick help.

Thanks a lot,
Aditya
 
OK. Good. Thanks for the kind words.
See the sinc.m file for an example. MATLAB does a test for the same reason and avoids the eps hack.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor