... | ... | @@ -101,7 +101,7 @@ This script |
|
|
counts = np.bincount(ts_min_index)
|
|
|
best_ts_index = np.argmax(counts)
|
|
|
```
|
|
|
6. Once the index of the best time-step has been found, find the begin/end times to be passed to the Extrae cutter
|
|
|
6. Once the index of the best time-step has been found, finds the begin/end times to be passed to the Extrae cutter
|
|
|
```python
|
|
|
best_ts_start = min(ts_time[:, best_ts_index])
|
|
|
best_ts_end = max(ts_time[:, best_ts_index + 1])
|
... | ... | |