hassonlab / 247-encoding

Contains python scripts for performing encoding on 247 data.
0 stars 9 forks source link

Clean up LAGS variable in Makefile #59

Closed hvgazula closed 1 year ago

hvgazula commented 1 year ago

https://github.com/hassonlab/247-pickling/commit/2087198f4c8f30ed73deeef7866db3779252d4c9#diff-d2ffe21627268d079647e68f0987198bfccb9cc2b00c00a68d3a2089291780b3R158-R192

@VeritasJoker can we have MIN_LAG, MAX_LAG, and STEP variables instead of so many lines for each LAG. Something like

MIN_LAG := -10000
MAX_LAG := 10000
STEP := 1000
LAGS := {$(MIN_LAG)..$(MAX_LAG)..$(STEP_SIZE)}