フィルターのクリア

I want help solving differential equations

1 回表示 (過去 30 日間)
kubel
kubel 2022 年 12 月 1 日
コメント済み: kubel 2022 年 12 月 1 日
This question
my sol
syms x y(t);
dsolve (diff(x,y) == exp^x/2*y);
problem
An error occurred during the following: exp
Insufficient input arguments.
Error Occurred: untitled (Line 2)
dsolve (diff(x,y) == exp^x/2*y);

採用された回答

KSSV
KSSV 2022 年 12 月 1 日
syms x y(x);
eqn = diff(y,x)==exp(x)/(2*y)
eqn(x) = 
sol = dsolve(eqn)
sol = 
  1 件のコメント
kubel
kubel 2022 年 12 月 1 日
Thank you very much.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by