Skip to content
Snippets Groups Projects
Commit fda7c119 authored by Leo Tsukada's avatar Leo Tsukada
Browse files

Revert "gstlal_inspiral_compute_dtdphideff_cov_matrix: updated after...

Revert "gstlal_inspiral_compute_dtdphideff_cov_matrix: updated after implementing the correct covariacne matrix"

This reverts commit dfddc5e7.
parent 6ae80036
No related branches found
No related tags found
No related merge requests found
Pipeline #69059 passed
......@@ -82,8 +82,8 @@ for combo in itertools.combinations(("H1", "L1", "V1"), 2):
m22 = sigsqpp[a] + sigsqpp[b]
m12 = m21 = sigsqtp[a] + sigsqtp[b]
mat = numpy.array([[m11, m12], [m21, m22]])
# matinv = numpy.linalg.inv(mat)
cholesky_transpose = numpy.linalg.cholesky(mat).T
matinv = numpy.linalg.inv(mat)
cholesky_transpose = numpy.linalg.cholesky(matinv).T
transtt[frozenset(combo)] = cholesky_transpose[0,0]
transtp[frozenset(combo)] = cholesky_transpose[0,1]
transpt[frozenset(combo)] = cholesky_transpose[1,0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment