Skip to content

Commit

Permalink
fixing history
Browse files Browse the repository at this point in the history
  • Loading branch information
arno committed Oct 26, 2018
1 parent 4a5da9e commit d9c58d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pop_dipfit_loreta.m
Expand Up @@ -32,7 +32,7 @@
% along with this program; if not, write to the Free Software
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

function [EEGOUT, com] = pop_dipfit_loreta(EEG, select, varargin)
function com = pop_dipfit_loreta(EEG, select, varargin)

if nargin < 1
help pop_dipfit_loreta;
Expand All @@ -56,14 +56,14 @@
error('General dipolefit settings not specified');
end

if ~isfield(EEG.dipfit, 'vol') & ~isfield(EEG.dipfit, 'hdmfile')
if ~isfield(EEG.dipfit, 'vol') && ~isfield(EEG.dipfit, 'hdmfile')
error('Dipolefit volume conductor model not specified');
end

dipfitdefs
if nargin < 2
uilist = { { 'style' 'text' 'string' [ 'Enter indices of components ' 10 '(one figure generated per component)'] } ...
{ 'style' 'edit' 'string' '5' } ...
{ 'style' 'edit' 'string' '1' } ...
{ 'style' 'text' 'string' 'ft_sourceanalysis parameters' } ...
{ 'style' 'edit' 'string' '''method'', ''eloreta''' } ...
{ 'style' 'text' 'string' 'ft_sourceplot parameters' } ...
Expand Down

0 comments on commit d9c58d1

Please sign in to comment.