Skip to content

Commit

Permalink
Merge pull request #142 from fAndreuzzi/patch-1
Browse files Browse the repository at this point in the history
Add missing .conj()
  • Loading branch information
ndem0 committed Mar 30, 2021
2 parents 2cc7de5 + f2d4211 commit 94eb8de
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 94eb8de

Please sign in to comment.