Configuration change: Context

This commit is contained in:
gac-x07mb
2022-03-04 14:28:28 +01:00
commit 0defe64bda
105 changed files with 101731 additions and 0 deletions

View File

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