Skip to content

Commit

Permalink
Fixed indices in formula (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-schindler authored Mar 7, 2023
1 parent 27c7b79 commit c02fce1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pygenstability/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. math::
Q_{gen}(t,H) = \mathrm{Tr} \left [H^T \left (F(t)-\sum_{k=1}^m v_{2k} v_{2k+1}^T\right)H\right]
Q_{gen}(t,H) = \mathrm{Tr} \left [H^T \left (F(t)-\sum_{k=1}^m v_{2k-1} v_{2k}^T\right)H\right]
where :math:`F(t)` is the quality matrix and :math:`v_k` are null model vectors.
Expand Down
2 changes: 1 addition & 1 deletion src/pygenstability/pygenstability.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. math::
Q_{gen}(t,H) = \mathrm{Tr} \left [H^T \left (F(t)-\sum_{k=0}^m v_{2k} v_{2k+1}^T\right)H\right]
Q_{gen}(t,H) = \mathrm{Tr} \left [H^T \left (F(t)-\sum_{k=1}^m v_{2k-1} v_{2k}^T\right)H\right]
where :math:`F(t)` is the quality matrix and :math:`v_k` are null model vectors.
The choice of the quality matrix and null model vectors are arbitrary in the generalized
Expand Down

0 comments on commit c02fce1

Please sign in to comment.