commit 3e623d8fa5f24368cec4537f5caeb6218bf9958a parent b81ec4a689d4b0367155b17c6fc820da48ba4db3 Author: miksa <milutin@popovic.xyz> Date: Sat, 10 Apr 2021 18:01:44 +0200 cleanup Diffstat:
11 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sesh1/prog/t0-method/__pycache__/method.cpython-39.pyc b/sesh1/prog/t0-method/__pycache__/method.cpython-39.pyc Binary files differ. diff --git a/sesh1/prog/t0-method/__pycache__/model.cpython-39.pyc b/sesh1/prog/t0-method/__pycache__/model.cpython-39.pyc Binary files differ. diff --git a/sesh1/prog/t0-method/plots/CMD2-fit.png b/sesh1/prog/t0-method/plots/CMD2-fit.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/CMD2.png b/sesh1/prog/t0-method/plots/CMD2.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/KLOE-fit.png b/sesh1/prog/t0-method/plots/KLOE-fit.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/KLOE.png b/sesh1/prog/t0-method/plots/KLOE.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/SND-fit.png b/sesh1/prog/t0-method/plots/SND-fit.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/SND.png b/sesh1/prog/t0-method/plots/SND.png Binary files differ. diff --git a/sesh1/prog/t0-method/plots/all-fit.png b/sesh1/prog/t0-method/plots/all-fit.png Binary files differ. diff --git a/sesh1/prog/t0-method/single_fit.py b/sesh1/prog/t0-method/single_fit.py @@ -22,7 +22,7 @@ def SND(): cov_relsyst) sigma = np.diag(cov_stat) - my_plot('SND-fit', x_data, y_data, p, dp, sigma) + my_plot('SND', x_data, y_data, p, dp, sigma) def CMD2(): data = np.loadtxt('../data/CMD2-VFF.txt') @@ -34,7 +34,7 @@ def CMD2(): for i in range(len(x_data)): if i<=43: cov_relsyst.append(0.006) - elif i>10 and i<=53: + elif i>43 and i<=53: cov_relsyst.append(0.007) else: cov_relsyst.append(0.008) @@ -46,7 +46,7 @@ def CMD2(): cov_relsyst) sigma = np.sqrt(np.diag(cov_stat)) - my_plot('CMD2-fit', x_data, y_data, p, dp, sigma) + my_plot('CMD2', x_data, y_data, p, dp, sigma) def KLOE(): data = np.loadtxt('../data/KLOE-VFF.txt') @@ -60,7 +60,7 @@ def KLOE(): cov_relsyst) sigma = np.sqrt(np.diag(cov_stat)) - my_plot('KLOE-fit', x_data, y_data, p, dp, sigma) + my_plot('KLOE', x_data, y_data, p, dp, sigma) def BABAR(): data = np.loadtxt('../data/BABAR-VFF.txt') diff --git a/sesh1/prog/t0-method/t0-method.md b/sesh1/prog/t0-method/t0-method.md @@ -1,13 +1,13 @@ # Iterative solution to the solution of the D'Agostini Bias (aka. t0-Method) * Construct statistical covariance matrix - * Construct design matrix + * Construct Jacobi matrix of model function in terms of the parameters * Guess parameters p0 ## Iterate * Construct System covariance matrix with the guess p0 - * Fill design matrix with p0 + * Fill Jacobi matrix with p0 = Design Matrix * Claculate dp - * p0 = p0 + dp + * p0 = p0 + alpha*dp; alpha \in [0, 1]