if i have a plot, how do i have find the derivative of the plot?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
for example i have plot(x,y) how do i have find the derivative of it and then find the zeros in that derivative plot?
0 Kommentare
Antworten (1)
John Petersen
am 10 Jul. 2012
Do you have a preferred method of taking the derivative? There are many. A simple one (that does not work well for noisy data) is
dy = diff(y)./diff(x);
To find zeros, you could search for where dy changes sign.
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!