@@ -136,9 +136,11 @@ def equalize_channels(instances, copy=True, verbose=None):
136
136
A list of MNE-Python objects that have the same channels defined in the
137
137
same order.
138
138
139
- Notes
140
- -----
141
- This function operates inplace.
139
+ See Also
140
+ --------
141
+ mne.channels.unify_bad_channels
142
+ mne.channels.rename_channels
143
+ mne.channels.combine_channels
142
144
"""
143
145
from ..cov import Covariance
144
146
from ..epochs import BaseEpochs
@@ -1126,6 +1128,12 @@ def rename_channels(info, mapping, allow_duplicates=False, *, verbose=None):
1126
1128
%(info_not_none)s Note: modified in place.
1127
1129
%(mapping_rename_channels_duplicates)s
1128
1130
%(verbose)s
1131
+
1132
+ See Also
1133
+ --------
1134
+ mne.channels.equalize_channels
1135
+ mne.channels.unify_bad_channels
1136
+ mne.channels.combine_channels
1129
1137
"""
1130
1138
_validate_type (info , Info , "info" )
1131
1139
info ._check_consistency ()
@@ -2032,6 +2040,12 @@ def combine_channels(
2032
2040
An MNE-Python object of the same type as the input ``inst``, containing
2033
2041
one virtual channel for each group in ``groups`` (and, if ``keep_stim``
2034
2042
is ``True``, also containing stimulus channels).
2043
+
2044
+ See Also
2045
+ --------
2046
+ mne.channels.equalize_channels
2047
+ mne.channels.rename_channels
2048
+ mne.channels.unify_bad_channels
2035
2049
"""
2036
2050
from ..epochs import BaseEpochs , EpochsArray
2037
2051
from ..evoked import Evoked , EvokedArray
0 commit comments