File: m1.py

package info (click to toggle)
lmfit-py 0.8.0%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,776 kB
  • ctags: 1,203
  • sloc: python: 7,041; makefile: 102; sh: 43
file content (26 lines) | stat: -rw-r--r-- 514 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

import numpy as np
from lmfit.old_models1d import  GaussianModel
import matplotlib.pyplot as plt

data = np.loadtxt('model1d_gauss.dat')
x = data[:, 0]
y = data[:, 1]

model = GaussianModel()  # background='linear'

# model.guess_starting_values(y, x, negative=False)
# model.params['bkg_offset'].value=min(y)

init_fit = model.model(x=x) + model.calc_background(x)
model.fit(y, x=x)

print model.fit_report()

final_fit = model.model(x=x)

plt.plot(x, y)
plt.plot(x, init_fit)
plt.plot(x, final_fit)
plt.show()