Ich habe zwei Punkte in 3D:
(xa, ya, za)
(xb, yb, zb)
Und ich möchte die Entfernung berechnen:
dist = sqrt((xa-xb)^2 + (ya-yb)^2 + (za-zb)^2)
Was ist der beste Weg, dies mit NumPy, oder mit Python im Allgemeinen zu tun? Ich habe:
import numpy
a = numpy.array((xa ,ya, za))
b = numpy.array((xb, yb, zb))