Center of gravity between 2 points
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
martin martin
le 19 Mar 2019
Modifié(e) : Andrei Bobrov
le 19 Mar 2019
Hello guys,
do you know about simple way how to calculate position of center of gravity between two points? For example first value has 10 kg and second 20 kg.
x = [1 3]
y = [2 5]
v = [10 20]
plot(x,y)
hold on
scatter(x,y,100,v,'filled')
axis image
colorbar
colormap winter
axis([x(1)-1 x(2)+1 y(1)-1 y(2)+1])

0 commentaires
Réponse acceptée
Andrei Bobrov
le 19 Mar 2019
Modifié(e) : Andrei Bobrov
le 19 Mar 2019
x = [1 3];
y = [2 5];
v = [10 20];
xc = sum(v.*x)/sum(v);
yc = sum(v.*y)/sum(v);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polygons dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!