Skip to content

Commit ae5dc7c

Browse files
authored
Merge pull request #151 from mrava87/dev
minor: fix docstring of LowRankFactorizedMatrix
2 parents 5f15dd6 + c87148f commit ae5dc7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproximal/utils/bilinear.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class LowRankFactorizedMatrix(BilinearOperator):
9191
9292
.. math::
9393
94-
\nabla_x H(\mathbf{x};\ mathbf{y}) =
94+
\nabla_x H(\mathbf{x};\ \mathbf{y}) =
9595
\mathbf{Op}^H(\mathbf{Op}(\mathbf{X}\mathbf{Y})
9696
- \mathbf{d})\mathbf{Y}^H
9797
@@ -103,8 +103,8 @@ class LowRankFactorizedMatrix(BilinearOperator):
103103
\mathbf{X}^H \mathbf{Op}^H(\mathbf{Op}
104104
(\mathbf{X}\mathbf{Y}) - \mathbf{d})
105105
106-
Note that in both cases, the currently stored x/y is used for
107-
the second variable within parenthesis (after ;)
106+
Note that in both cases, the currently stored :math`\mathbf{x}`/:math`\mathbf{y}` variable
107+
is used for the second variable within parenthesis (after ;).
108108
109109
"""
110110
def __init__(self, X, Y, d, Op=None):

0 commit comments

Comments
 (0)