How to find a slope of signal if we do not know the value of x1, x2, y1, y2
10 次查看(过去 30 天)
显示 更早的评论
How can we find the slope of a signal if we do not know the value of x1, x2, y1, y2
which we cannot use
Slope = (y2 - y1) / (x2 - x1);
Example:
load sunspot.dat
year = sunspot(:,1);
avSpots = sunspot(:,2);
[pks,loc]=findpeaks(avSpots,year, 'Annotate','extents','WidthReference','halfheight')
axis([1700 1711 0 100])
give a graph of
Thank you
0 个评论
采纳的回答
Star Strider
2019-2-13
I am not certain what you intend by ‘slope of a signal’. You can easily determine the derivatives of the signal with the gradient (link) function.
6 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!