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
)/((t*exp
- sin
))';
>>dsolve(eqn, 't')
Warning: Explicit solution could not be found; implicit solution returned.
> In dsolve at 312
ans =
t+exp(-y)*cos
-exp(-y)*C1 = 0
>>f = @(t, y) (-t)/(exp(-y)*cos
-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
I am trying to draw several solutions to a different equation. I have the following in MATLAB
>>eqn = 'Dy = (-exp
>>dsolve(eqn, 't')
Warning: Explicit solution could not be found; implicit solution returned.
> In dsolve at 312
ans =
t+exp(-y)*cos
>>f = @(t, y) (-t)/(exp(-y)*cos
>>[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