I have a series of points in a xy plane representing repetitive movements at a specific time frame. How can I find the mean coordinate? Can I simply use: xmean= x1+x2+...+xn/#points and ymean=y1+y2+.../#points or there is a proper Matlab Function?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tommaso Di Noto
le 25 Avr 2017
Commenté : Tommaso Di Noto
le 25 Avr 2017
Mean Point in planar Graph
2 commentaires
Réponse acceptée
Lilian Darracq
le 25 Avr 2017
There is a function matlab called mean which does the work, just type :
X = [x1,x2..., xn]
x_mean = mean(X);
Y = [y1,y2..., yn]
y_mean = mean(Y);
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!