1
0
Fork 0
mirror of https://github.com/Findus23/collision-analyisis-and-interpolation.git synced 2024-09-19 15:13:50 +02:00
collision-analyisis-and-int.../interpolators/base.py

12 lines
237 B
Python
Raw Permalink Normal View History

2019-05-02 11:30:33 +02:00
from numpy import ndarray
2019-07-29 13:51:22 +02:00
2019-05-02 11:30:33 +02:00
class BaseInterpolator():
def __init__(self, points, values):
self.points = points
self.values = values
def interpolate(self, alpha, v, mcode, gamma, wt, wp) -> ndarray:
pass