How to do distance formula

1 Ansicht (letzte 30 Tage)
Kaden Bauernfeind
Kaden Bauernfeind am 28 Mär. 2022
Kommentiert: VBBV am 28 Mär. 2022
Im trying to find the distance between 2 points on a truss and I have the length and the x and y of the nodes on the truss but what code in matlab would make this work.

Antworten (1)

KSSV
KSSV am 28 Mär. 2022
If(x1,y1) and (X2,y2) are two points. To get the distance use the formula:
d = sqtrt((x2-x1)^2+(y2-y1)^2) ;
  3 Kommentare
KSSV
KSSV am 28 Mär. 2022
d = sqrt((x(:,2)-x(:,1)).^2+(y(:,2)-y(:,1)).^2) ;
VBBV
VBBV am 28 Mär. 2022
+1

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Structural Analysis finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by