[Question] Does the topomap use the ica unmixing or mixing matrix?
See original GitHub issueHey there,
I just debugged the ICA.plot_components()
method and stumbled over the docstring in topomap.py#L778, where it says:
Project unmixing matrix on interpolated sensor topogrpahy.
But here the mixing matrix is used: topomap.py#L889.
Maybe this is some language or math understanding problem of mine. Could somebody clear this up and shortly explain how the topomap creation works inside?
Thanks in advance, paul
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
mne.preprocessing.ICA — MNE 0.11.0 documentation
Given the unmixing matrix, transform data, zero out components, and inverse transform the data. This procedure will reconstruct M/EEG signals from which the ......
Read more >Independent Component Analysis (ICA) – demystified
We can now generate an unmixing matrix W (ICA matrix) which, when multiplied with the data matrix x, transforms the mixed data x...
Read more >Topographic Independent Component Analysis
the mixing matrix. The problem is then to estimate both the mixing ma- trix A and the realizations of the latent variables si,...
Read more >Independent component analysis for biomedical signals
The use of ICA has been facilitated in part by the free availability ... ICA produces an unmixing matrix W, which unmixes the...
Read more >Independent component analysis for biomedical signals
The use of ICA has been facilitated in part by the free availability ... ICA produces an unmixing matrix W, which unmixes the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hm … https://github.com/mne-tools/mne-python/blob/master/mne/viz/topomap.py#L889 should probably use
ica.get_components
now, for consistency’s sake.@mmagnuski thanks for the papers, they clear things up. So the mixing matrix is taken for plotting.