Hi all, i have fitted a Four Parameters Logistic Regression for my X and Y data. i want to find the local slope of each data point, i would appreciate if somebody can help me on this , the attached image shows the fit

1 view (last 30 days)

Accepted Answer

Ben Drebing
Ben Drebing on 21 Dec 2017
Do you mean you want to calculate the slope at each point along the curve? If your curve is given by x and y, then you can get the slope at each point along the curve by doing
slopes = diff(y) ./ diff(x);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!