How can I solve the following derative problem in Matlab ?

1 次查看(过去 30 天)

采纳的回答

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 个评论
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 CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by