forked from mne-tools/mne-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding small fixes, whats_new, and reference
- Loading branch information
1 parent
1376596
commit 2fbad45
Showing
4 changed files
with
7 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
# Roman Goj <[email protected]> | ||
# | ||
# License: BSD (3-clause) | ||
from copy import deepcopy | ||
|
||
import numpy as np | ||
from scipy import linalg | ||
from copy import deepcopy | ||
|
||
from ..io.constants import FIFF | ||
from ..io.proj import make_projector | ||
|
@@ -429,9 +429,6 @@ def apply_lcmv(evoked, filters, max_ori_out='abs', verbose=None): | |
Apply Linearly Constrained Minimum Variance (LCMV) beamformer weights | ||
on evoked data. | ||
.. note:: This implementation has not been heavily tested so please | ||
report any issue or suggestions. | ||
Parameters | ||
---------- | ||
evoked : Evoked | ||
|
@@ -482,9 +479,6 @@ def apply_lcmv_epochs(epochs, filters, max_ori_out='abs', | |
Apply Linearly Constrained Minimum Variance (LCMV) beamformer weights | ||
on single trial data. | ||
.. note:: This implementation has not been heavily tested so please | ||
report any issue or suggestions. | ||
Parameters | ||
---------- | ||
epochs : Epochs | ||
|
@@ -596,8 +590,6 @@ def lcmv(evoked, forward, noise_cov=None, data_cov=None, reg=0.05, label=None, | |
Compute Linearly Constrained Minimum Variance (LCMV) beamformer | ||
on evoked data. | ||
.. note:: This implementation has not been heavily tested so please | ||
report any issue or suggestions. | ||
Parameters | ||
---------- | ||
|
@@ -687,8 +679,6 @@ def lcmv_epochs(epochs, forward, noise_cov, data_cov, reg=0.05, label=None, | |
Compute Linearly Constrained Minimum Variance (LCMV) beamformer | ||
on single trial data. | ||
.. note:: This implementation has not been heavily tested so please | ||
report any issue or suggestions. | ||
Parameters | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters