Homogeneous differential equation with dsolve => Warning: Unable to find explicit solution.
Show older comments
Hey,
I would like to understand why I get this message "Warning: Unable to find explicit solution" when I try to get the ODE solution.
I hope you can help me.
clear all; close all; clc;
syms y(x)
Dy = diff(y);
ODE = diff(y,x,2) == ( x^2 + y^2 ) / ( x*y ) ;
cond1 = y(0) == 3;
cond2 = Dy(0) == 0;
conds = [cond1, cond2];
ySol(x) = dsolve(ODE,conds);
ySol = simplify(ySol)
% Command Window
Warning: Unable to find explicit solution.
> In dsolve (line 201)
In ignore (line 12)
ySol(x) =
[ empty sym ]
>>
Accepted Answer
More Answers (0)
Communities
More Answers in the Distance Learning Community
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
