Ignore:
Timestamp:
May 25, 2015, 8:48:58 PM (9 years ago)
Author:
sommeria
Message:

sub_background corrected for volume and multilevel cases

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/civ_input.m

    r885 r897  
    17931793     end
    17941794     Param.ActionInput.Civ1.CorrSmooth=0;% launch Civ1 with no data point (to get the image names for A and B)
     1795     Param.IndexRange.first_i=str2num(get(handles.ref_i,'String'));
     1796     Param.IndexRange.last_i=str2num(get(handles.ref_i,'String'));
     1797     if strcmp(get(handles.ref_j,'Visible'),'on')
     1798         Param.IndexRange.first_j=str2num(get(handles.ref_j,'String'));
     1799         Param.IndexRange.last_j=Param.IndexRange.first_j;
     1800     else
     1801         Param.IndexRange.first_j=1;
     1802         Param.IndexRange.last_j=1;
     1803     end
    17951804     [Data,errormsg]=civ_series(Param);% get the civ1+fix1 results
    17961805     if ~isempty(errormsg), return, end % rmq: error msg displayed in civ_series
Note: See TracChangeset for help on using the changeset viewer.