I want help solving differential equations
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
VBBV
2022 年 12 月 1 日
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)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!