Skip to content

Commit

Permalink
add missing .conj() (fix mathLab#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
fandreuz committed Mar 29, 2021
1 parent 2cc7de5 commit f2d4211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ezyrb/pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def reduce(self, X):
:type: numpy.ndarray
"""
self._modes, self._singular_values = self.__method(X)
return self.modes.T.dot(X)
return self.modes.T.conj().dot(X)

def expand(self, X):
"""
Expand Down

0 comments on commit f2d4211

Please sign in to comment.