Mean of an oscillatory trajectory
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ban
am 7 Aug. 2023
Beantwortet: Image Analyst
am 8 Aug. 2023
Hi,
I have a particle moving in oscillatory path. See the plot of distantce vs time plot. How do I find the mean trajectory ?
0 Kommentare
Akzeptierte Antwort
Daniel Bengtson
am 7 Aug. 2023
p = polyfit(t,X,2); % fit a second order polynomial to the data
newT = linspace(min(t),max(t)); % 100 evenly spaced steps over the range of t
Y = polyval(p,newT); % evaluate the polynomial at these steps
plot(newT,Y);
4 Kommentare
Daniel Bengtson
am 8 Aug. 2023
I should have thought on it more before posting. You are right to question my answer. Polyfit is just a least squares regression and given that I did not take any steps to enforce an intercept at zero, and that the error between the theoretical mean trajectory and raw signal would be relatively small near zero compared to near t max, it probably isn't as good of a fit as it could have been.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Polynomials 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!
