We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ecf90e commit f146940Copy full SHA for f146940
src/isotropic/utils/linalg.py
@@ -21,8 +21,9 @@ def jax_null_space(A: ArrayLike) -> Array:
21
Notes
22
------
23
See also:
24
+
25
- `scipy.linalg.null_space` for the reference implementation in SciPy.
- - 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.
27
"""
28
u, s, vh = svd(A, full_matrices=True)
29
M, N = u.shape[0], vh.shape[1]
0 commit comments