Skip to content

Commit

Permalink
Delcapify for mna equations
Browse files Browse the repository at this point in the history
  • Loading branch information
mph- committed Dec 31, 2023
1 parent 740f4d4 commit 32c8357
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lcapy/mna.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ def matrix_equations(self, form='default', invert=False):
If `invert` is True, evaluate the matrix inverse."""

sys = SystemEquations(self.A, self._Z, self.X)
from .expr import delcapify

sys = SystemEquations(self._A, self._Z, delcapify(self.X))
return sys.format(form, invert)

def equations(self, inverse=False):
Expand Down

0 comments on commit 32c8357

Please sign in to comment.