Python을 이용한 Hecht equation fitting
운반자의 이동도와 수명의 곱을 계산하기 위한 파이썬 프로그래밍의 예제이다. import matplotlib import matplotlib.pyplot as plt from matplotlib import style from matplotlib import pylab import numpy as np from scipy.optimize import curve_fit # bias data and peak position channel data xs=np.array([35,100,150,200,250,300]) ys=np.array([100,133,145,152,159,162]) #detector thickness in cm. det_thick=0.2 #define fitting function def ex..