Skip to content

Commit

Permalink
Removed some old code that was commented out
Browse files Browse the repository at this point in the history
  • Loading branch information
DetectiveKiwi committed Nov 6, 2023
1 parent d549d75 commit 2aac581
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions nsdmd/nsdmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,6 @@ def _opt_dmd_win(self, x, t, guess=None):
phis : complex spatial modes with shape (number of windows, rank, number of channels)
windows : exact windows used, for testing purposes
"""
# windows = np.array(
# [np.arange(i, i + self.w_len) for i in np.arange(0, x.shape[-1] - self.w_len + 1, self.stride)]
# )
windows = [np.arange(i, i + self.w_len) for i in np.arange(0, x.shape[-1] - self.w_len + 1, self.stride)]
if windows[-1][-1]!=x.shape[-1]-1:
warnings.warn(
Expand Down

0 comments on commit 2aac581

Please sign in to comment.