mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
missed some brakets
This commit is contained in:
parent
134fe7d3f7
commit
ef2323e9bd
1 changed files with 2 additions and 2 deletions
|
@ -1084,7 +1084,7 @@ def read_ms5_xsf(path, prefix, qc, corr):
|
|||
realObs = []
|
||||
imagObs = []
|
||||
compObs = []
|
||||
for t in range(tmax): realObs.append(Obs(realsamples[t], names = prefix, idl = cnfgs))
|
||||
for t in range(tmax): imagObs.append(Obs(imagsamples[t], names = prefix, idl = cnfgs))
|
||||
for t in range(tmax): realObs.append(Obs([realsamples[t]], names = [prefix], idl = [cnfgs]))
|
||||
for t in range(tmax): imagObs.append(Obs([imagsamples[t]], names = [prefix], idl = [cnfgs]))
|
||||
for t in range(tmax): compObs.append(CObs(realObs[t], imagObs[t]))
|
||||
return Corr(compObs)
|
Loading…
Add table
Reference in a new issue