mne.set_bipolar_reference(inst, anode, cathode, ch_name=None, ch_info=None, copy=True)[source]¶Rereference selected channels using a bipolar referencing scheme.
A bipolar reference takes the difference between two channels (the anode minus the cathode) and adds it as a new virtual channel. The original channels will be dropped.
Multiple anodes and cathodes can be specified, in which case multiple virtual channels will be created. The 1st anode will be subtracted from the 1st cathode, the 2nd anode from the 2nd cathode, etc.
By default, the virtual channels will be annotated with channel info of the anodes, their locations set to (0, 0, 0) and coil types set to EEG_BIPOLAR.
| Parameters: | inst : instance of Raw | Epochs | Evoked 
 anode : str | list of str 
 cathode : str | list of str 
 ch_name : str | list of str | None 
 ch_info : dict | list of dict | None 
 copy : bool 
  | 
|---|---|
| Returns: | inst : instance of Raw | Epochs | Evoked 
  | 
See also
set_eeg_referenceNotes
New in version 0.9.0.