format files
This commit is contained in:
parent
cd6dc8da65
commit
9f822df29d
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
from numpy import ndarray
|
||||
|
||||
|
||||
class BaseInterpolator():
|
||||
|
||||
def __init__(self, points, values):
|
||||
|
|
|
@ -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))
|
||||
|
|
Reference in a new issue