Skip to content

Commit

Permalink
Merge pull request #64 from mimischi/patch-stacking
Browse files Browse the repository at this point in the history
Fix stacking of results
  • Loading branch information
kain88-de authored Sep 20, 2018
2 parents 29b22bc + a608185 commit d56fd7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmda/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _single_frame(self, ts, atomgroups):
return self.function(*args, **self.kwargs)

def _conclude(self):
self.results = np.hstack(self._results)
self.results = np.vstack(self._results)


def analysis_class(function):
Expand Down

0 comments on commit d56fd7e

Please sign in to comment.