Center of gravity between 2 points

조회 수: 2 (최근 30일)
martin martin
martin martin 2019년 3월 19일
편집: Andrei Bobrov 2019년 3월 19일
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])
teziste.png

채택된 답변

Andrei Bobrov
Andrei Bobrov 2019년 3월 19일
편집: Andrei Bobrov 2019년 3월 19일
x = [1 3];
y = [2 5];
v = [10 20];
xc = sum(v.*x)/sum(v);
yc = sum(v.*y)/sum(v);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polygons에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by