mne_average_estimates

Dear all,

In mne_python, is there any function to have the same role as the MNE
command 'mne_average_estimates'? Thanks

Best wishes,
Qunxi Dong
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20140923/4c001d41/attachment.html

Hi Qunxi,

Are the following recent messages relevant for you?

https://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/2014-September/002481.html
https://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/2014-September/002482.html

Best,
Steve

Stephen Politzer-Ahles
New York University, Abu Dhabi
Neuroscience of Language Lab
http://www.nyu.edu/projects/politzer-ahles/

Thanks Stephen! Yes, I just want to get an average STC across different
subjects' stcs in the common brain space 'fsaverage'.
So I wander whether is it the same role as the MNE command
'mne_average_estimates'.

stc_avg = reduce(add, stcs)

Is 'add' a function like : stc1 + stc2+....?

Best wishes,
Qunxi Dong

2014-09-23 17:32 GMT+02:00 Stephen Politzer-Ahles <spa268 at nyu.edu>:

Hi Qunxi,

Are the following recent messages relevant for you?

[Mne_analysis] Grand average of evoked files?

[Mne_analysis] Grand average of evoked files?

Best,
Steve

Stephen Politzer-Ahles
New York University, Abu Dhabi
Neuroscience of Language Lab
http://www.nyu.edu/projects/politzer-ahles/

Dear all,

In mne_python, is there any function to have the same role as the MNE
command 'mne_average_estimates'? Thanks

Best wishes,
Qunxi Dong

_______________________________________________
Mne_analysis mailing list
Mne_analysis at nmr.mgh.harvard.edu
Mne_analysis Info Page

The information in this e-mail is intended only for the person to whom it
is
addressed. If you believe this e-mail was sent to you in error and the
e-mail
contains patient information, please contact the Partners Compliance
HelpLine at
MyComplianceReport.com: Compliance and Ethics Reporting . If the e-mail was sent to you
in error
but does not contain patient information, please contact the sender and
properly
dispose of the e-mail.

_______________________________________________
Mne_analysis mailing list
Mne_analysis at nmr.mgh.harvard.edu
Mne_analysis Info Page

The information in this e-mail is intended only for the person to whom it
is
addressed. If you believe this e-mail was sent to you in error and the
e-mail
contains patient information, please contact the Partners Compliance
HelpLine at
MyComplianceReport.com: Compliance and Ethics Reporting . If the e-mail was sent to you in
error
but does not contain patient information, please contact the sender and
properly
dispose of the e-mail.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20140924/57331175/attachment.html

Thanks Stephen! Yes, I just want to get an average STC across different
subjects' stcs in the common brain space 'fsaverage'.
So I wander whether is it the same role as the MNE command
'mne_average_estimates'.

stc_avg = reduce(add, stcs)

Is 'add' a function like : stc1 + stc2+....?

yes exactly. Divide by len(stcs) to have the average stc.

A