Skip to content
Snippets Groups Projects
Commit 90e90def authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix copy paste error

parent e9d4d8fe
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ class PMTRates(kp.Module):
def add_column(self):
m_rates = np.roll(self.rates_matrix, -1, 1)
m_hrv = np.roll(self.rates_matrix, -1, 1)
m_hrv = np.roll(self.hrv_matrix, -1, 1)
y_range = 18 * 31
mean_rates = np.full(y_range, np.nan)
hrv = np.full(y_range, np.nan)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment