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 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