1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
collision-analysis-and-inte.../interpolators/base.py
2019-07-29 13:51:22 +02:00

11 lines
237 B
Python

from numpy import ndarray
class BaseInterpolator():
def __init__(self, points, values):
self.points = points
self.values = values
def interpolate(self, alpha, v, mcode, gamma, wt, wp) -> ndarray:
pass