ax = check_ax(ax, (15, 3))
times = repeat(times) if isinstance(times, np.ndarray) else times
sigs = [sigs] if isinstance(sigs, np.ndarray) else sigs
if labels is not None:
After Change
times = np.tile(times, (n_repeats, 1))
// Make sigs iterable if 1D
sigs = np.reshape(sigs, (1, -1)) if not isinstance(sigs, list) and sigs.ndim == 1 else sigs
if labels is not None:
labels = [labels] if not isinstance(labels, list) else labels