Skip to content

Commit

Permalink
fix failing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
a-alveyblanc committed Dec 5, 2024
1 parent 19b1cda commit 6cbcfd5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions modepy/matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,6 @@ def modal_quad_bilinear_form(
where :math:`\phi_i` are the *test_functions* at the nodes
:math:`r_j` of *quadrature*, with corresponding weights :math:`w_j`.
Seeks to generalize functionality found in, e.g.
:func:`modal_quad_mass_matrix`.
"""
modal_operator = np.empty((len(test_functions), len(quadrature.weights)))

Expand Down Expand Up @@ -402,9 +399,6 @@ def nodal_quad_bilinear_form(
number of nodes in *nodes*. Otherwise, the operator has shape :math:`N
\times N_q` where :math:`N_q` is the number of nodes associated with
*quadrature*. Default behavior is to assume a quadrature domain is not used.
Seeks to generalize functionality found in, e.g.
:func:`nodal_quad_mass_matrix`.
"""
if len(test_functions) != nodes.shape[1]:
raise ValueError("volume_nodes not unisolvent with trial_functions")
Expand Down

0 comments on commit 6cbcfd5

Please sign in to comment.