Skip to content

Commit

Permalink
folder re-organizing and updating documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
epnev committed Jan 2, 2016
1 parent 477ec83 commit e09e041
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
8 changes: 7 additions & 1 deletion @Sources2D/Sources2D.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ function updateSpatial(obj, Y)
Y, obj.A, obj.b, obj.C, obj.f, obj.P, obj.options);
end

%% merge the found components
%% update temporal components in parallel
function Y_res = updateTemporalParallel(obj, Y)
[obj.C, obj.f, Y_res, obj.P, obj.S] = update_temporal_components_parallel(...
Y, obj.A, obj.b, obj.C, obj.f, obj.P, obj.options);
end

%% merge found components
function [nr, merged_ROIs] = merge(obj, Y_res)
[obj.A, obj.C, nr, merged_ROIs, obj.P, obj.S] = merge_components(...
Y_res,obj.A, obj.b, obj.C, obj.f, obj.P,obj.S, obj.options);
Expand Down
2 changes: 1 addition & 1 deletion constrained_foopsi.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function [c,b,c1,g,sn,sp] = constrained_foopsi(y,b,c1,g,sn,options)
% spike inference using a constrained foopsi approach:
% spike inference using a constrained deconvolution approach:
% min sum(sp)
% c,sp,b,c1
% subject to: sp >= 0
Expand Down
1 change: 0 additions & 1 deletion demo_script.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
clear;
%% load file

addpath(genpath('../constrained-foopsi'));
addpath(genpath('utilities'));

nam = 'demoMovie.tif'; % insert path to tiff stack here
Expand Down
1 change: 0 additions & 1 deletion demo_script_class.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
% same demo as demo_script.m but using the clas @Sources2D
%% load file

addpath(genpath('../constrained-foopsi'));
addpath(genpath('utilities'));

nam = 'demoMovie.tif'; % insert path to tiff stack here
Expand Down
Binary file modified documentation.pdf
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 comments on commit e09e041

Please sign in to comment.