0
votes

Is there a standard class in Python to emulate a geometric point that includes coordinates and a value, including arithmetic operations between the coordinates?

1

1 Answers

1
votes

If you just want standard matrix arithmetic operations for your coordinates, try numpy's array type.