mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
added math minimal distance example
This commit is contained in:
parent
9c4de0b4fa
commit
6aea1e9e8e
3 changed files with 214 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import numpy
|
||||
|
||||
class Point:
|
||||
def __init__(self, x, y):
|
||||
self.x = x
|
||||
self.y = y
|
||||
|
||||
def euclideanDist(p1, p2):
|
||||
from math import sqrt
|
||||
return sqrt((p1.x-p2.x)**2 + (p1.y-p2.y)**2)
|
||||
|
||||
def getMinDist(y, precision=0.001, startX=0, endX=3):
|
||||
"""Get x of point on (x,x^2) that has minimal distance to given Point."""
|
||||
minDist = -1
|
||||
p1 = Point(0, y)
|
||||
for x in numpy.arange(startX, endX, precision):
|
||||
p2 = Point(x, x**2)
|
||||
dist = euclideanDist(p1, p2)
|
||||
if minDist == -1 or dist < minDist:
|
||||
minDist = dist
|
||||
#print(dist)
|
||||
else:
|
||||
if abs(i-minDist) <0.005:
|
||||
print("x: %s" % str(x))
|
||||
break
|
||||
return minDist
|
||||
|
||||
for i in numpy.arange(0, 3, 0.01):
|
||||
minDist = getMinDist(i)
|
||||
if abs(i-minDist) < 0.005:
|
||||
print(i, minDist)
|
||||
|
||||
#print(getMinDist(5, 0.00001, 2, 3))
|
Loading…
Add table
Add a link
Reference in a new issue