From f91fa9b1585e0b3b05566d60cd30eec8345a4690 Mon Sep 17 00:00:00 2001 From: alexmadison Date: Tue, 8 Mar 2022 10:48:43 +0100 Subject: [PATCH] all times fix --- test/prsim_plot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/prsim_plot.py b/test/prsim_plot.py index 8dd0a07..2e822fd 100755 --- a/test/prsim_plot.py +++ b/test/prsim_plot.py @@ -119,6 +119,7 @@ Use -exclude='regex' to specify signals to exclude (or -ex).""") # Get list of all times (after filtering) times = np.array([int(e[0]) for e in entries]) if not include_all_times: unique_times = np.unique(times) + num_times = unique_times.shape[0] # Get list of all sigs sigs = np.array([e[1] for e in entries])