I want help solving differential equations

1 回表示 (過去 30 日間)
kubel
kubel 2022 年 12 月 1 日
コメント済み: kubel 2022 年 12 月 1 日
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 = 
  1 件のコメント
kubel
kubel 2022 年 12 月 1 日
Thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by