How to use append method to stc?

I want to splice 8 stc together, but the add method of sourceEstimate is to sum the values. Is there any way to append one stc to another stc?

You could use the constructor of the object:

https://mne.tools/stable/generated/mne.SourceEstimate.html#mne.SourceEstimate

Just concatenate stc.data using numpy and create a new SourceEstimate object.

Hope that helps,
Mainak

1 Like

ok,i will take the idea,
Okay, I will try this method.
I thought about it before, but I didn’t implement it because I was afraid of some unknown errors. Since you said yes, I can do it with confidence.
Thank you very much for your reply.