Skip to content

Commit

Permalink
use -1 to get last corr dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
landmanbester committed Feb 5, 2024
1 parent f3639bd commit 34ef93b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pfb/utils/stokes.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,11 +503,11 @@ def vfunc(gp, gq, W, V):
W00 = W[0]
W01 = 1.0
W10 = 1.0
W11 = W[3]
W11 = W[-1]
V00 = V[0]
V01 = 0j
V10 = 0j
V11 = V[3]
V11 = V[-1]
return Djfn(gp00, gp11,
gq00, gq11,
W00, W01, W10, W11,
Expand Down

0 comments on commit 34ef93b

Please sign in to comment.