[docs] more docs cleanup

This commit is contained in:
Forgejo Actions 2026-04-19 16:57:22 -07:00
commit ff278e6fa1
6 changed files with 22 additions and 23 deletions

View file

@ -483,4 +483,3 @@ def e_boundary_source(
# (numpy.roll(mask, +1, axis=2) != mask)) # (numpy.roll(mask, +1, axis=2) != mask))
return sparse.diags_array(jmask.astype(int)) @ full return sparse.diags_array(jmask.astype(int)) @ full

View file

@ -216,7 +216,7 @@ def solve_modes(
of the bent waveguide with the specified mode number. of the bent waveguide with the specified mode number.
Args: Args:
mode_number: Number of the mode, 0-indexed mode_numbers: Mode numbers to solve, 0-indexed.
omega: Angular frequency of the simulation omega: Angular frequency of the simulation
dxes: Grid parameters [dx_e, dx_h] as described in meanas.fdmath.types. dxes: Grid parameters [dx_e, dx_h] as described in meanas.fdmath.types.
The first coordinate is assumed to be r, the second is y. The first coordinate is assumed to be r, the second is y.

View file

@ -123,4 +123,3 @@ def unvec(
if v is None: if v is None:
return None return None
return v.reshape((nvdim, *shape), order='C') # type: ignore return v.reshape((nvdim, *shape), order='C') # type: ignore

View file

@ -63,6 +63,7 @@ docs = [
"mkdocs-print-site-plugin>=2.3", "mkdocs-print-site-plugin>=2.3",
"pymdown-extensions>=10.7", "pymdown-extensions>=10.7",
"htmlark>=1.0", "htmlark>=1.0",
"ruff>=0.6",
] ]
examples = [ examples = [
"matplotlib>=3.10.8", "matplotlib>=3.10.8",