Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
fix(validate_DWT_monte_carlo): adjust return values of dwt/idwt
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Gruber committed Mar 17, 2020
1 parent 4a3fd5e commit 4dd601b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyDynamic/uncertainty/validate_DWT_monte_carlo.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
ld, hd, lr, hr = filter_design(filter_name)

# single decomposition with uncertainty
c_approx, U_approx, c_detail, U_detail = dwt(x, Ux, ld, hd, kind="diag")
c_approx, U_approx, c_detail, U_detail, _ = dwt(x, Ux, ld, hd, kind="diag")

# single reconstruction with uncertainty
xr, Uxr = idwt(c_approx, U_approx, c_detail, U_detail, lr, hr, kind="diag")
xr, Uxr, _ = idwt(c_approx, U_approx, c_detail, U_detail, lr, hr, kind="diag")

# actual monte carlo

Expand Down

0 comments on commit 4dd601b

Please sign in to comment.