Skip to content

Commit f146940

Browse files
committed
correctly format docstrings for jax_null_space
1 parent 0ecf90e commit f146940

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/isotropic/utils/linalg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ def jax_null_space(A: ArrayLike) -> Array:
2121
Notes
2222
------
2323
See also:
24+
2425
- `scipy.linalg.null_space` for the reference implementation in SciPy.
25-
- https://github.com/jax-ml/jax/pull/14486 for an old JAX implementation.
26+
- [https://github.com/jax-ml/jax/pull/14486](https://github.com/jax-ml/jax/pull/14486) for an old JAX implementation.
2627
"""
2728
u, s, vh = svd(A, full_matrices=True)
2829
M, N = u.shape[0], vh.shape[1]

0 commit comments

Comments
 (0)