У меня есть кривая, и я хочу зафиксировать начальную точку и перетащить конечную точку на синюю точку, сохраняя при этом общую форму кривой (растягивая и сжимая ее). Есть мысли, как мне это сделать?
import matplotlib.pyplot as pl
import numpy as np
x = np.linspace(1, 10)
def f(x):
return np.sin(x) + np.random.normal(scale=0.1, size=len(x))
pl.plot(x, f(x))
pl.plot(8,.2,'bo')
Кривая с точкой
ОТВЕТ
#shift the end point to the dot
shift_x = 10-x[-1]
shift_y = .2-y[-1]
#shift the data
x=x+shift_x
y=y+shift_y
pl.plot(x,y)
pl.plot(10,.2,'bo')
смещение конечной точки в нужное место
#shift the data back to the original points based on how close it is
#to the end point
gradient_x = shift_x/len(x)
gradient_y = shift_y/len(y)
for i in range(len(x)):
y[i] = y[i]-(len(x)-i)*gradient_y
x[i] = x[i]-(len(x)-i)*gradient_x
pl.plot(x,y)
pl.plot(10,.2,'bo')
Все 3 преобразования