Skip to content

Commit

Permalink
minor: fix docstring of LowRankFactorizedMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrava87 committed Nov 26, 2023
1 parent 5f15dd6 commit c87148f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproximal/utils/bilinear.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class LowRankFactorizedMatrix(BilinearOperator):
.. math::
\nabla_x H(\mathbf{x};\ mathbf{y}) =
\nabla_x H(\mathbf{x};\ \mathbf{y}) =
\mathbf{Op}^H(\mathbf{Op}(\mathbf{X}\mathbf{Y})
- \mathbf{d})\mathbf{Y}^H
Expand All @@ -103,8 +103,8 @@ class LowRankFactorizedMatrix(BilinearOperator):
\mathbf{X}^H \mathbf{Op}^H(\mathbf{Op}
(\mathbf{X}\mathbf{Y}) - \mathbf{d})
Note that in both cases, the currently stored x/y is used for
the second variable within parenthesis (after ;)
Note that in both cases, the currently stored :math`\mathbf{x}`/:math`\mathbf{y}` variable
is used for the second variable within parenthesis (after ;).
"""
def __init__(self, X, Y, d, Op=None):
Expand Down

0 comments on commit c87148f

Please sign in to comment.