We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spherical coordinate dipoles were not plotted correctly on the dipplot panels, e.g. faces_4.set
the call to dipplot currently uses hardcoded 'MNI' coordformat
dipplot
coordformat
Instead, take coordformat from EEG.dipfit.coordformat
EEG.dipfit.coordformat
The text was updated successfully, but these errors were encountered:
Insert after line 404 of pop_plot_extended.m
pop_plot_extended.m
% recover coordformat from EEG.dipfit coordformat = EEG.dipfit.coordformat; if isempty(coordformat) coordformat = 'MNI'; end
change the call to dipplot to use coordformat variable
```
dipplot(EEG.dipfit.model(chanorcomp), ... 'meshdata', meshdatapath, ... 'mri', mripath, ... 'normlen', 'on', 'coordformat', coordformat, 'axistight', 'on', 'gui', 'off', 'view', [0 0 1], 'pointout', 'on');
Sorry, something went wrong.
No branches or pull requests
Spherical coordinate dipoles were not plotted correctly on the dipplot panels, e.g. faces_4.set
the call to
dipplot
currently uses hardcoded 'MNI'coordformat
Instead, take
coordformat
fromEEG.dipfit.coordformat
The text was updated successfully, but these errors were encountered: