フィルターのクリア

How can I solve the following derative problem in Matlab ?

1 回表示 (過去 30 日間)
Vuqar Samedov
Vuqar Samedov 2020 年 10 月 3 日
コメント済み: Steven Lord 2020 年 10 月 4 日

採用された回答

Matteo Lo Preti
Matteo Lo Preti 2020 年 10 月 4 日
Hi Vuqar,
You can solve the derivative problem with the diff function, and then apply the simplify function.
syms x
y = (x^2 + 1)/(x^2-1);
dy = diff(y);
dy_simplified = simplify(dy)
  2 件のコメント
Vuqar Samedov
Vuqar Samedov 2020 年 10 月 4 日
thank you very much Matteo Lo Preti,
God bless you !
Steven Lord
Steven Lord 2020 年 10 月 4 日
Please don't post the solution to homework problems, or questions that sound like homework problems, unless the poster shows some effort first.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by