Skip to content

Commit

Permalink
Update core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anwarnunez committed Apr 20, 2020
1 parent 2c9ac9a commit 1769c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moten/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def compute_spatial_pcs(self, npcs=None):

# store: (npixels, npcs)
self.decomposition_spatial_pcs = np.asarray(Q[:, :npcs], dtype=self.dtype)
self.decomposition_eigenvalues = np.asarray(L[::-1], dtype=self.dtype)
self.decomposition_eigenvalues = np.asarray(L, dtype=self.dtype)

def compute_temporal_pcs(self, generator=None, skip_first=False):
'''
Expand Down

0 comments on commit 1769c63

Please sign in to comment.