mne.average_forward_solutions#

mne.average_forward_solutions(fwds, weights=None, verbose=None)[source]#

Average forward solutions.

Parameters:
fwdslist of Forward

Forward solutions to average. Each entry (dict) should be a forward solution.

weightsarray | None

Weights to apply to each forward solution in averaging. If None, forward solutions will be equally weighted. Weights must be non-negative, and will be adjusted to sum to one.

verbosebool | str | int | None

Control verbosity of the logging output. If None, use the default verbosity level. See the logging documentation and mne.verbose() for details. Should only be passed as a keyword argument.

Returns:
fwdForward

The averaged forward solution.