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

format files

This commit is contained in:
Lukas Winkler 2019-07-29 13:51:22 +02:00
parent cd6dc8da65
commit 9f822df29d
Signed by: lukas
GPG key ID: 54DE4D798D244853
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
from numpy import ndarray
class BaseInterpolator():
def __init__(self, points, values):

View file

@ -16,7 +16,7 @@ class RbfInterpolator(BaseInterpolator):
# exit()
for x in range(alpha.shape[0]):
for y in range(alpha.shape[0]):
results[99-x][99-y] = self.rbfi(alpha[0][x], v[y][0], mcode, gamma, wt, wp)
results[99 - x][99 - y] = self.rbfi(alpha[0][x], v[y][0], mcode, gamma, wt, wp)
# print(alpha[0][x], v[y][0])
# print(results)
# print(self.rbfi(alpha[0][99], v[30][0], mcode, gamma, wt, wp))