mne.DipoleFixed¶
-
class
mne.
DipoleFixed
(info, data, times, nave, aspect_kind, first, last, comment, verbose=None)[source]¶ Dipole class for fixed-position dipole fits.
Note
This class should usually not be instantiated directly, instead
mne.read_dipole()
should be used.- Parameters
- infoinstance of
Info
The measurement info.
- data
array
, shape (n_channels, n_times) The dipole data.
- times
array
, shape (n_times,) The time points.
- nave
int
Number of averages.
- aspect_kind
int
The kind of data.
- first
int
First sample.
- last
int
Last sample.
- comment
str
The dipole comment.
- verbosebool,
str
,int
, orNone
If not None, override default verbose level (see
mne.verbose()
and Logging documentation for more).
- infoinstance of
See also
Notes
This class is for fixed-position dipole fits, where the position (and maybe orientation) is static over time. For sequential dipole fits, where the position can change a function of time, use
mne.Dipole
.New in version 0.12.
Attributes
Channel names.
Methods
__hash__
(self, /)Return hash(self).
copy
(self)Copy the DipoleFixed object.
plot
(self[, show, time_unit])Plot dipole data.
save
(self, fname[, verbose])Save dipole in a .fif file.
-
__hash__
(self, /)¶ Return hash(self).
-
property
ch_names
¶ Channel names.
-
copy
(self)[source]¶ Copy the DipoleFixed object.
- Returns
- instinstance of
DipoleFixed
The copy.
- instinstance of
Notes
New in version 0.16.
-
plot
(self, show=True, time_unit='s')[source]¶ Plot dipole data.
- Parameters
- Returns
- figinstance of
matplotlib.figure.Figure
The figure containing the time courses.
- figinstance of
-
save
(self, fname, verbose=None)[source]¶ Save dipole in a .fif file.
- Parameters
- fname
str
The name of the .fif file. Must end with
'.fif'
or'.fif.gz'
to make it explicit that the file contains dipole information in FIF format.- verbosebool,
str
,int
, orNone
If not None, override default verbose level (see
mne.verbose()
and Logging documentation for more). Defaults to self.verbose.
- fname