Create a unit vector from two locations?

조회 수: 9 (최근 30일)
Jonathan White
Jonathan White 2022년 9월 26일
답변: David Hill 2022년 9월 26일
"A temporary second unit vector (j), was created from the second metatarsal head (MTH2) and CoM location, and divided by its norm."
Code:
MTH2 = [0.472 1.364 0.06]
CoM = [0.471 1.147 0.903]
UnitVector = CoM - MTH2 / norm(CoM - MTH2)
= [-0.069 0.42 0.83]
is this correct?

답변 (2개)

Torsten
Torsten 2022년 9월 26일
편집: Torsten 2022년 9월 26일
is this correct?
No.
MTH2 = [0.472 1.364 0.06]
CoM = [0.471 1.147 0.903]
UnitVector = (CoM - MTH2) / norm(CoM - MTH2)

David Hill
David Hill 2022년 9월 26일
MTH2 = [0.472 1.364 0.06];
CoM = [0.471 1.147 0.903];
UnitVector = (CoM - MTH2) / norm(CoM - MTH2)
UnitVector = 1×3
-0.0011 -0.2493 0.9684

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by