How can I solve the following derative problem in Matlab ?

1 Ansicht (letzte 30 Tage)

Akzeptierte Antwort

Matteo Lo Preti
Matteo Lo Preti am 4 Okt. 2020
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 Kommentare
Vuqar Samedov
Vuqar Samedov am 4 Okt. 2020
thank you very much Matteo Lo Preti,
God bless you !
Steven Lord
Steven Lord am 4 Okt. 2020
Please don't post the solution to homework problems, or questions that sound like homework problems, unless the poster shows some effort first.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by