Skip to content

Commit 1769c63

Browse files
authored
Update core.py
1 parent 2c9ac9a commit 1769c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

moten/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def compute_spatial_pcs(self, npcs=None):
146146

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

151151
def compute_temporal_pcs(self, generator=None, skip_first=False):
152152
'''

0 commit comments

Comments
 (0)