How can I solve the following derative problem in Matlab ?

1 visualización (últimos 30 días)

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by