Changeset 647 for trunk


Ignore:
Timestamp:
Jun 2, 2013, 4:01:41 PM (11 years ago)
Author:
sommeria
Message:

bug corrected in time_series, LIF functions introduced (but not in operation)

Location:
trunk/src/series
Files:
2 added
2 edited

Legend:

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

    r645 r647  
    1 
    2 %'civ_input': function associated with the interface 'civ_input.fig' for PIV, spline interpolation and stereo PIV (patch)
    3 %------------------------------------------------------------------------
    4 %  provides an interface for the software menucivx
    5 % function varargout = civ_input(varargin)
    6 % provides an interface for the software menucivx
     1%'civ_input': function associated with the GUI 'civ_input.fig' to set the input parameters for civ_series
     2%------------------------------------------------------------------------
     3% function ParamOut = civ_input(Param)
     4%
     5% OUPUT:
     6% ParamOut: Matlab structure containing the parameters set by the GUI civ_input
     7%
     8% INPUT:
     9% Param: Matlab structure containing the input parameters set by the GUI
    710%
    811%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
     
    2225%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    2326function varargout = civ_input(varargin)
    24 %TODO: search range
    25 
    26 
    27 % Last Modified by GUIDE v2.5 25-May-2013 12:37:21
    28 % Begin initialization code - DO NOT EDIT
     27
    2928gui_Singleton = 1;
    3029gui_State = struct('gui_Name',       mfilename, ...
  • trunk/src/series/time_series.m

    r645 r647  
    9595%%%%%%%%%%%%
    9696nbview=numel(i1_series);%number of input file series (lines in InputTable)
    97 nbfield_j=size(j1_series{1},1); %nb of fields for the j index (bursts or volume slices)
     97nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
    9898nbfield_i=size(i1_series{1},2); %nb of fields for the i index
    9999nbfield=nbfield_j*nbfield_i; %total number of fields
    100 % [first_i,tild,last_i,first_j,tild,last_j,errormsg]=get_index_range(Param.IndexRange);
    101 % if ~isempty(errormsg),display(errormsg),return,end
    102100
    103101%% determine the file type on each line from the first input file
Note: See TracChangeset for help on using the changeset viewer.