how to take the derivative of the function saved from curve fitting tool

조회 수: 12 (최근 30일)
zein
zein 2021년 3월 1일
댓글: Simon Allosserie 2021년 3월 3일
I want to take the derivative of the following function after extracting the curve fitted from cftool. I have saved the curve fitted curve to my workspace.
I want to know how to get the highest slope (derivate) of the curve with respect to x-data ?

답변 (1개)

Simon Allosserie
Simon Allosserie 2021년 3월 1일
편집: Simon Allosserie 2021년 3월 1일
If you have the values of your fitted curve saved, you can calculate the first derivative by using the gradient function: https://nl.mathworks.com/help/matlab/ref/gradient.html For example
fx = gradient(x) %calculate first derivative of the vector x containing your curve data.
Hope this works :)
  댓글 수: 4
zein
zein 2021년 3월 3일
I used the equation, but the max slope was increasing with decreasing the step until certain limit then the max slope become constant. I think that is normal, right?
Simon Allosserie
Simon Allosserie 2021년 3월 3일
As per the definition of a slope, this is indeed normal. It is literally called "derivatve" because ultimately it determines the slopes over a infinitesimal x-step. So yes, once it converges to a constant value that should be right I think!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by