This commit is contained in:
gac-x10da
2019-02-26 10:45:24 +01:00
parent d28855292f
commit 7e1f3f54c2
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from jeputils import *
def gfitoff(x, y, off=None, amp=None, com=None, sigma=None):
ret = call_jep("cpython/gfitoff", "gfitoff", [to_npa(x), to_npa(y), off, amp, com, sigma])
return ret if ret is None or is_list(ret) else ret.data