I want help solving differential equations
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
This question
my sol
syms x y(x);
eqn = diff(y,x)+sqrt(1-y^2/1-x^2)==0;
sol = dsolve(eqn);
problem
Warning: Symbol solution not available.
> at dsolve (Line 209)
From the uninitiated line 3
0 Kommentare
Akzeptierte Antwort
VBBV
am 1 Dez. 2022
syms x y(x)
eqn = diff(y(x),x)+sqrt((1-y^2)/(1-x^2))==0
cond = [y(0) == 1;y(1) == 0] % check with some other initial conditions as well
sol = dsolve(eqn,cond)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!