Script execution
This commit is contained in:
@@ -95,7 +95,8 @@ def hfit(ydata, xdata = None):
|
||||
|
||||
resolution = 0.01
|
||||
fit_y = []
|
||||
for x in frange(start,end,resolution, True):
|
||||
#for x in frange(start,end,resolution, True):
|
||||
for x in xdata:
|
||||
fit_y.append(fitted_harmonic_function.value(x))
|
||||
fit_x = frange(start, end+resolution, resolution)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user