I want help solving differential equations

1 次查看(过去 30 天)
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

采纳的回答

VBBV
VBBV 2022-12-1
syms x y(x)
eqn = diff(y(x),x)+sqrt((1-y^2)/(1-x^2))==0
eqn(x) = 
cond = [y(0) == 1;y(1) == 0] % check with some other initial conditions as well
cond = 
sol = dsolve(eqn,cond)
sol = 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

产品


版本

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by