ax = check_ax(ax, (15, 3))
times = repeat(times)ifisinstance(times, np.ndarray)else times
sigs = [sigs] ifisinstance(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 == 1else sigs
if labels is not None:
labels = [labels] if not isinstance(labels, list)else labels