Skip to content

Commit

Permalink
postpone bibliography
Browse files Browse the repository at this point in the history
  • Loading branch information
ntessore committed Feb 14, 2025
1 parent 16fa0ca commit da4efe4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 22 deletions.
19 changes: 0 additions & 19 deletions docs/user/bibliography.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/user/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ User guide

how-glass-works
publications
bibliography
definitions
11 changes: 9 additions & 2 deletions glass/core/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ def nnls(
"""
Compute a non-negative least squares solution.
Implementation of the algorithm due to [Lawson95]_ as described by
[Bro97]_.
Implementation of the algorithm due to [1] as described in [2].
Parameters
----------
Expand All @@ -47,6 +46,14 @@ def nnls(
ValueError
If the shapes of ``a`` and ``b`` do not match.
References
----------
* [1] Lawson, C. L. and Hanson, R. J. (1995), Solving Least Squares
Problems. doi: 10.1137/1.9781611971217
* [2] Bro, R. and De Jong, S. (1997), A fast
non-negativity-constrained least squares algorithm. J.
Chemometrics, 11, 393-401.
"""
a = np.asanyarray(a)
b = np.asanyarray(b)
Expand Down
2 changes: 2 additions & 0 deletions glass/grf/_transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ class SquaredNormal:
distribution, with determines the smallest possible value
:math:`-\lambda` of the squared normal field.
.. [Tessore25] https://arxiv.org/abs/2408.16903
Parameters
----------
a
Expand Down

0 comments on commit da4efe4

Please sign in to comment.