You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm reviewing the method used for calculating distances between points in the ccep_retrieveInterROIDistance.m function, specifically at this line: ccep_retrieveInterROIDistance.m, Line 73.
It seems the calculation sums all components and then applies the square root. For me, this order would make more sense:
calculate difference between x, y, z-coordinates of neighbouring points
square the difference
sum the three components
apply square root to get the distance between all neighbouring points
sum all individual distances to get the total distance
Thank you and all the best,
Roland
The text was updated successfully, but these errors were encountered:
Hi
I'm reviewing the method used for calculating distances between points in the
ccep_retrieveInterROIDistance.m
function, specifically at this line:ccep_retrieveInterROIDistance.m, Line 73.
It seems the calculation sums all components and then applies the square root. For me, this order would make more sense:
Thank you and all the best,
Roland
The text was updated successfully, but these errors were encountered: