Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeyers committed Jul 16, 2024
1 parent 2504b0d commit 7725f4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions solardatatools/_osd_signal_decompositions.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def _osd_l2_l1d1_l2d2p365(
:param signal: A 1d numpy array (must support boolean indexing) containing
the signal of interest
:param w0: Weight on the residual component
:param w1: The regularization parameter to control the total variation in
the final output signal
:param w2: The regularization parameter to control the smoothness of the
Expand All @@ -86,7 +85,7 @@ def _osd_l2_l1d1_l2d2p365(
if solver != "QSS":
sum_card = False

c1 = SumSquare(weight=w0)
c1 = SumSquare()
T = len(signal)
c2 = Aggregate([Fourier(3, T, 365.2425, weight=w2), AverageEqual(0)])

Expand Down

0 comments on commit 7725f4c

Please sign in to comment.