Skip to content

Commit

Permalink
Update order_components.m
Browse files Browse the repository at this point in the history
  • Loading branch information
epnev authored Jun 22, 2016
1 parent 95b5dc3 commit 950ba9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/order_components.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
end

if ~isfield(options,'nsd') || isempty(options.nsd); options.nsd = defoptions.nsd; end % number of sd above the mode
if ~isfield(options,'nfr') || isempty(options.nfr); options.nsd = defoptions.nfr; end % number of consecutive frames
if ~isfield(options,'nfr') || isempty(options.nfr); options.nfr = defoptions.nfr; end % number of consecutive frames

[K,T] = size(C);
CY = C + YrA;
Expand All @@ -56,4 +56,4 @@
end

[n_events,srt] = sort(sum(FF2,2),'descend');
n_act = sum(n_events>0);
n_act = sum(n_events>0);

0 comments on commit 950ba9a

Please sign in to comment.