Skip to content

Commit

Permalink
found the problem, incorrect input data in y
Browse files Browse the repository at this point in the history
  • Loading branch information
cchwala committed Oct 5, 2023
1 parent 72026b2 commit 754e196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycomlink/tests/test_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_without_nans(self):

zi = interpolator(
x=np.array([1, 2, 3, 4, 5]),
y=np.array([2, 4, 3, 5, 1]),
y=np.array([2, 3, 3, 5, 3]),
z=np.array([1, 2, 3, 4, 3]),
xgrid=xi,
ygrid=yi,
Expand Down

0 comments on commit 754e196

Please sign in to comment.