how to find the local Slope of a curve in each point
13 次查看(过去 30 天)
显示 更早的评论
how to calculate the local slope degree of this curve in its point having the x and y values of the curve:
I tried to do it with the following :
slope = diff(y) ./ diff(x);
or :
slopeY = (y(2:end) + y(1:end-1))/2;
but my results doesnt seem to be correct. Thank you.
2 个评论
Adam
2014-9-24
In what way do the results not seem correct? Do you have manually calculated results that differ?
Star Strider
2014-9-24
I would use gradient rather than diff, since the output vector is the same length as the input vector.
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!