mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 11:33:42 +02:00
[Feat] Introduce checks of the provided inverse matrix for correlated fits (#259)
Co-authored-by: Simon Kuberski <simon.kuberski@cern.ch>
This commit is contained in:
parent
6ed6ce6113
commit
5f5438b563
2 changed files with 5 additions and 0 deletions
|
@ -223,6 +223,9 @@ def test_inv_cov_matrix_input_least_squares():
|
|||
diff_inv_cov_combined_fit.gamma_method()
|
||||
assert(diff_inv_cov_combined_fit.is_zero(atol=1e-12))
|
||||
|
||||
with pytest.raises(ValueError):
|
||||
pe.least_squares(x_dict, data_dict, fitf_dict, correlated_fit = True, inv_chol_cov_matrix = [corr,chol_inv_keys_combined_fit])
|
||||
|
||||
def test_least_squares_invalid_inv_cov_matrix_input():
|
||||
xvals = []
|
||||
yvals = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue