(values, n_labels)
| 2546 | |
| 2547 | |
| 2548 | def _check_values_labels(values, n_labels): |
| 2549 | if n_labels != len(values): |
| 2550 | raise ValueError( |
| 2551 | f"values.shape[0] ({values.shape[0]}) must match the number of " |
| 2552 | f"labels ({n_labels})" |
| 2553 | ) |
| 2554 | |
| 2555 | |
| 2556 | def _labels_to_stc_surf(labels, values, tmin, tstep, subject): |
no outgoing calls
no test coverage detected