@@ -5,7 +5,7 @@ def compute_full(dl: np.ndarray, beta: float, L: int, el: int) -> np.ndarray:
55 r"""Compute Wigner-d at argument :math:`\beta` for full plane using
66 Risbo recursion.
77
8- The Wigner-d plane is computed by recursion over :math:`\ell` (`el`) .
8+ The Wigner-d plane is computed by recursion over :math:`\ell`.
99 Thus, for :math:`\ell > 0` the plane must be computed already for
1010 :math:`\ell - 1`. At present, for :math:`\ell = 0` the recusion is initialised.
1111
@@ -19,7 +19,7 @@ def compute_full(dl: np.ndarray, beta: float, L: int, el: int) -> np.ndarray:
1919 el (int): Spherical harmonic degree :math:`\ell`.
2020
2121 Returns:
22- np.ndarray: Plane of Wigner-d for `el ` and ` beta`, with full plane computed.
22+ np.ndarray: Plane of Wigner-d for :math:`\ell ` and :math:`\ beta`, with full plane computed.
2323 """
2424
2525 _arg_checks (dl , beta , L , el )
@@ -103,7 +103,7 @@ def compute_full(dl: np.ndarray, beta: float, L: int, el: int) -> np.ndarray:
103103
104104
105105def _arg_checks (dl : np .ndarray , beta : float , L : int , el : int ):
106- """Check arguments of Risbo functions.
106+ r """Check arguments of Risbo functions.
107107
108108 Args:
109109 dl (np.ndarray): Wigner-d plane of which to check shape.
0 commit comments