Skip to content

Commit e09e041

Browse files
committed
folder re-organizing and updating documentation
1 parent 477ec83 commit e09e041

File tree

7 files changed

+8
-4
lines changed

7 files changed

+8
-4
lines changed

@Sources2D/Sources2D.m

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,13 @@ function updateSpatial(obj, Y)
5454
Y, obj.A, obj.b, obj.C, obj.f, obj.P, obj.options);
5555
end
5656

57-
%% merge the found components
57+
%% update temporal components in parallel
58+
function Y_res = updateTemporalParallel(obj, Y)
59+
[obj.C, obj.f, Y_res, obj.P, obj.S] = update_temporal_components_parallel(...
60+
Y, obj.A, obj.b, obj.C, obj.f, obj.P, obj.options);
61+
end
62+
63+
%% merge found components
5864
function [nr, merged_ROIs] = merge(obj, Y_res)
5965
[obj.A, obj.C, nr, merged_ROIs, obj.P, obj.S] = merge_components(...
6066
Y_res,obj.A, obj.b, obj.C, obj.f, obj.P,obj.S, obj.options);

constrained_foopsi.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function [c,b,c1,g,sn,sp] = constrained_foopsi(y,b,c1,g,sn,options)
2-
% spike inference using a constrained foopsi approach:
2+
% spike inference using a constrained deconvolution approach:
33
% min sum(sp)
44
% c,sp,b,c1
55
% subject to: sp >= 0

demo_script.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
clear;
22
%% load file
33

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

76
nam = 'demoMovie.tif'; % insert path to tiff stack here

demo_script_class.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
% same demo as demo_script.m but using the clas @Sources2D
33
%% load file
44

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

87
nam = 'demoMovie.tif'; % insert path to tiff stack here

documentation.pdf

760 Bytes
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)