Relative position of a point with respect to centroid
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a point e.g, (2,3) and centroid e.g., (8,9). How to find relative position of this point X and Y with respect to centroid? and relative velocity with respect to centroid. Is relative velocity different from the usual/normal velocity?
0 Commenti
Risposte (1)
David Goodmanson
il 7 Apr 2017
Hello Blue The relative position is the coordinates of the point in question minus the 'with respect to' point which in this case is the centroid. So in terms of Matlab vectors,
relposition = [2 3] - [8 9]
It is the same with velocities, velocity of point in question minus velocity of centroid. So relative velocity could well be different than the velocity of the point in question.
2 Commenti
David Goodmanson
il 7 Apr 2017
In physics anyway, relative position is how I described it above. It's good to verify things and not depend on just one opinion (mine included), so you could take a look at 'displacement (vector) wiki' (the second sentence) or at https://www.youtube.com/watch?v=2Oebgo04feI
Vedere anche
Categorie
Scopri di più su Geometric Transformation and Image Registration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!