How to get an inverse filter?

Dear MNE users,

For example, I have EEG data (64x256) (channel, time). Here, I think by multiplying an inverse filter (Maybe 256x 20484, time and num of vertexes), we can get the cortical activities in source space. Do you know how I can get this inverse filter?

Best,
Kyu

Hi @kyuwanchoi, I don’t know an answer to your question, but adding some context to your question (e.g., in the form of scientific paper references) might help other people to know how to help you.

Just “inverse filter” by itself is a little too broad of a topic to write a concise answer to.

https://mne.tools/stable/generated/mne.minimum_norm.make_inverse_operator.html

the function is called make_inverse_operator (linked above). It gets one dimension (number of channels) from an Info object, and the other dimension (number of vertices on the cortex) from a SourceSpace object. The number of time points is irrelevant / unchanged.

1 Like