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: | info : instance of Info
data : array, shape (n_channels, n_times)
times : array, shape (n_times,)
nave : int
aspect_kind : int
first : int
last : int
comment : str
verbose : bool, str, int, or None
|
---|
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
ch_names |
Channel names. |
Methods
__hash__ () <==> hash(x) |
|
plot ([show]) |
Plot dipole data. |
save (fname[, verbose]) |
Save dipole in a .fif file. |
__hash__
() <==> hash(x)¶ch_names
¶Channel names.
plot
(show=True)[source]¶Plot dipole data.
Parameters: | show : bool
|
---|---|
Returns: | fig : instance of matplotlib.figure.Figure
|
save
(fname, verbose=None)[source]¶Save dipole in a .fif file.
Parameters: | fname : str
verbose : bool, str, int, or None
|
---|