MATLAB: How to find the inflection point of a curve in matlab

inflection point

hi….does anyone know how to find the inflection point of a curve in matlab? any suggestion is highly appreciated..

Best Answer

If your curve are data (not calculated by a function) I would use the gradient function to calculate the derivative. To find the zero-crossing of the derivative, you can either use a threshold test, or if appropriate for your derivative, the interp1 function.