Age | Commit message (Collapse) | Author | Lines |
|
|
|
|
|
|
|
|
|
Enable with DFATOOL_COMPENSATE_DRIFT=1
so far it's pretty unreliable.
|
|
|
|
|
|
|
|
|
|
this also fixes a nasty off-by-one in the barcode loader
(now _load_energytrace):
wrong: interval_start_timestamp = data[:-1, 0] * 1e-6
correct: interval_start_timestamp = data[1:, 0] * 1e-6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This should speed up analysis quite a bit and also reduce memory usage
significantly
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
looking pretty good now!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it still isn't satisfactory
|