Changeset 810 for trunk/src/series


Ignore:
Timestamp:
Aug 13, 2014, 3:01:27 AM (10 years ago)
Author:
g7moreau
Message:
  • Add license
Location:
trunk/src/series
Files:
25 edited

Legend:

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

    r782 r810  
    22% -process LIF images
    33%----------------------------------------------------------------------
     4
     5%=======================================================================
     6% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     7%   http://www.legi.grenoble-inp.fr
     8%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     9%
     10%     This file is part of the toolbox UVMAT.
     11%
     12%     UVMAT is free software; you can redistribute it and/or modify
     13%     it under the terms of the GNU General Public License as published
     14%     by the Free Software Foundation; either version 2 of the license,
     15%     or (at your option) any later version.
     16%
     17%     UVMAT is distributed in the hope that it will be useful,
     18%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     19%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20%     GNU General Public License (see LICENSE.txt) for more details.
     21%=======================================================================
     22
    423function GUI_input=LIF_series(num_i1,num_i2,num_j1,num_j2,Series);
    524
  • trunk/src/series/aver_stat.m

    r784 r810  
    3838%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    3939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     40
     41%=======================================================================
     42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     43%   http://www.legi.grenoble-inp.fr
     44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     45%
     46%     This file is part of the toolbox UVMAT.
     47%
     48%     UVMAT is free software; you can redistribute it and/or modify
     49%     it under the terms of the GNU General Public License as published
     50%     by the Free Software Foundation; either version 2 of the license,
     51%     or (at your option) any later version.
     52%
     53%     UVMAT is distributed in the hope that it will be useful,
     54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     56%     GNU General Public License (see LICENSE.txt) for more details.
     57%=======================================================================
    4058
    4159function ParamOut=aver_stat(Param)
  • trunk/src/series/aver_synchro.m

    r787 r810  
    3838%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    3939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     40
     41%=======================================================================
     42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     43%   http://www.legi.grenoble-inp.fr
     44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     45%
     46%     This file is part of the toolbox UVMAT.
     47%
     48%     UVMAT is free software; you can redistribute it and/or modify
     49%     it under the terms of the GNU General Public License as published
     50%     by the Free Software Foundation; either version 2 of the license,
     51%     or (at your option) any later version.
     52%
     53%     UVMAT is distributed in the hope that it will be useful,
     54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     56%     GNU General Public License (see LICENSE.txt) for more details.
     57%=======================================================================
    4058
    4159function ParamOut=aver_synchro(Param)
  • trunk/src/series/avi2png.m

    r176 r810  
    11% 'avi2png': copy an avi movie to a series of B/W .png images (take the average of green and blue color components)
    22%----------------------------------------------------------------------
     3
     4%=======================================================================
     5% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     6%   http://www.legi.grenoble-inp.fr
     7%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     8%
     9%     This file is part of the toolbox UVMAT.
     10%
     11%     UVMAT is free software; you can redistribute it and/or modify
     12%     it under the terms of the GNU General Public License as published
     13%     by the Free Software Foundation; either version 2 of the license,
     14%     or (at your option) any later version.
     15%
     16%     UVMAT is distributed in the hope that it will be useful,
     17%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     18%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     19%     GNU General Public License (see LICENSE.txt) for more details.
     20%=======================================================================
     21
    322function GUI_input=avi2png(num_i1,num_i2,num_j1,num_j2,Series)
    423%% INPUT PARAMETERS (to edit)
  • trunk/src/series/beam_forming.m

    r784 r810  
     1%=======================================================================
     2% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     3%   http://www.legi.grenoble-inp.fr
     4%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     5%
     6%     This file is part of the toolbox UVMAT.
     7%
     8%     UVMAT is free software; you can redistribute it and/or modify
     9%     it under the terms of the GNU General Public License as published
     10%     by the Free Software Foundation; either version 2 of the license,
     11%     or (at your option) any later version.
     12%
     13%     UVMAT is distributed in the hope that it will be useful,
     14%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     15%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     16%     GNU General Public License (see LICENSE.txt) for more details.
     17%=======================================================================
     18
    119function ParamOut=beam_forming(Param)
    220
  • trunk/src/series/calc_background.m

    r245 r810  
    1919%----------------------------------------------------------------------
    2020% Method:
    21     %calculate the background image by sorting the luminosity of each point
    22     % over a sliding sub-sequence of 'nbaver_ima' images.
    23     % The luminosity value of rank 'rank' is selected as the
    24     % 'background'. rank=nbimages/2 gives the median value.  Smaller values are appropriate
    25     % for a dense set of particles. The extrem value rank=1 gives the true minimum
    26     % luminosity, but it can be polluted by noise.
     21%    calculate the background image by sorting the luminosity of each point
     22%     over a sliding sub-sequence of 'nbaver_ima' images.
     23%    The luminosity value of rank 'rank' is selected as the
     24%    'background'. rank=nbimages/2 gives the median value.  Smaller values are appropriate
     25%    for a dense set of particles. The extrem value rank=1 gives the true minimum
     26%     luminosity, but it can be polluted by noise.
    2727% Organization of image indices:
    28     % The program is working on a series of images, labelled by two indices i and j, given
    29     % by the input matlab vectors num_i1 and num_j1 respectively. In the list, j is the fastest increasing index.
    30     % The processing can be done in slices (number nbslice), with bursts of
    31     % nbfield2 successive images for a given slice (mode 'multilevel')
    32     % In the mode 'volume', nbfield2=1 (1 image at each level)
    33 %
     28%     The program is working on a series of images, labelled by two indices i and j, given
     29%     by the input matlab vectors num_i1 and num_j1 respectively. In the list, j is the fastest increasing index.
     30%     The processing can be done in slices (number nbslice), with bursts of
     31%     nbfield2 successive images for a given slice (mode 'multilevel')
     32%     In the mode 'volume', nbfield2=1 (1 image at each level)
     33
     34%=======================================================================
     35% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     36%   http://www.legi.grenoble-inp.fr
     37%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     38%
     39%     This file is part of the toolbox UVMAT.
     40%
     41%     UVMAT is free software; you can redistribute it and/or modify
     42%     it under the terms of the GNU General Public License as published
     43%     by the Free Software Foundation; either version 2 of the license,
     44%     or (at your option) any later version.
     45%
     46%     UVMAT is distributed in the hope that it will be useful,
     47%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     48%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     49%     GNU General Public License (see LICENSE.txt) for more details.
     50%=======================================================================
     51
    3452function GUI_input=calc_background (num_i1,num_i2,num_j1,num_j2,Series)
    3553
  • trunk/src/series/check_data_files.m

    r784 r810  
    3131%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    3232%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     33
     34%=======================================================================
     35% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     36%   http://www.legi.grenoble-inp.fr
     37%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     38%
     39%     This file is part of the toolbox UVMAT.
     40%
     41%     UVMAT is free software; you can redistribute it and/or modify
     42%     it under the terms of the GNU General Public License as published
     43%     by the Free Software Foundation; either version 2 of the license,
     44%     or (at your option) any later version.
     45%
     46%     UVMAT is distributed in the hope that it will be useful,
     47%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     48%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     49%     GNU General Public License (see LICENSE.txt) for more details.
     50%=======================================================================
    3351
    3452function ParamOut=check_data_files(Param)
  • trunk/src/series/check_peaklock.m

    r784 r810  
    4444%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    4545%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     46
     47%=======================================================================
     48% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     49%   http://www.legi.grenoble-inp.fr
     50%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     51%
     52%     This file is part of the toolbox UVMAT.
     53%
     54%     UVMAT is free software; you can redistribute it and/or modify
     55%     it under the terms of the GNU General Public License as published
     56%     by the Free Software Foundation; either version 2 of the license,
     57%     or (at your option) any later version.
     58%
     59%     UVMAT is distributed in the hope that it will be useful,
     60%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     61%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     62%     GNU General Public License (see LICENSE.txt) for more details.
     63%=======================================================================
     64
    4665function  ParamOut=check_peaklocking(Param)
    4766
  • trunk/src/series/civ_input.m

    r801 r810  
    88% INPUT:
    99% Param: Matlab structure containing the input parameters set by the GUI
     10
     11%=======================================================================
     12% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     13%   http://www.legi.grenoble-inp.fr
     14%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
    1015%
    11 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    12 %  Copyright 2011-2014, LEGI / CNRS UJF G-INP, Joel.Sommeria@legi.grenoble-inp.fr
    13 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    1416%     This file is part of the toolbox UVMAT.
    1517%
    1618%     UVMAT is free software; you can redistribute it and/or modify
    17 %     it under the terms of the GNU General Public License as published by
    18 %     the Free Software Foundation; either version 2 of the License, or
    19 %     (at your option) any later version.
     19%     it under the terms of the GNU General Public License as published
     20%     by the Free Software Foundation; either version 2 of the license,
     21%     or (at your option) any later version.
    2022%
    2123%     UVMAT is distributed in the hope that it will be useful,
    2224%     but WITHOUT ANY WARRANTY; without even the implied warranty of
    2325%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    24 %     GNU General Public License (file UVMAT/COPYING.txt) for more details.
    25 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
     26%     GNU General Public License (see LICENSE.txt) for more details.
     27%=======================================================================
     28
    2629function varargout = civ_input(varargin)
    2730
  • trunk/src/series/civ_series.m

    r801 r810  
    2121%     .Patch2:
    2222% ncfile: name of a netcdf file to be created for the result (extension .nc)
     23
     24%=======================================================================
     25% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     26%   http://www.legi.grenoble-inp.fr
     27%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
    2328%
    24 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    25 %  Copyright 2011-2014, LEGI / CNRS UJF G-INP, Joel.Sommeria@legi.grenoble-inp.fr
    26 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    27 %     This is part of the toolbox UVMAT.
    28 %
     29%     This file is part of the toolbox UVMAT.
     30%
    2931%     UVMAT is free software; you can redistribute it and/or modify
    30 %     it under the terms of the GNU General Public License as published by
    31 %     the Free Software Foundation; either version 2 of the License, or
    32 %     (at your option) any later version.
    33 % 
     32%     it under the terms of the GNU General Public License as published
     33%     by the Free Software Foundation; either version 2 of the license,
     34%     or (at your option) any later version.
     35%
    3436%     UVMAT is distributed in the hope that it will be useful,
    3537%     but WITHOUT ANY WARRANTY; without even the implied warranty of
    3638%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    37 %     GNU General Public License (open UVMAT/COPYING.txt) for more details.
    38 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
     39%     GNU General Public License (see LICENSE.txt) for more details.
     40%=======================================================================
    3941
    4042function [Data,errormsg,result_conv]= civ_series(Param)
  • trunk/src/series/clean_civ_cmx.m

    r340 r810  
    1212%num_j2: (not used) series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
    1313%Series: Matlab structure containing information set by the series interface
     14
     15%=======================================================================
     16% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     17%   http://www.legi.grenoble-inp.fr
     18%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
    1419%
     20%     This file is part of the toolbox UVMAT.
     21%
     22%     UVMAT is free software; you can redistribute it and/or modify
     23%     it under the terms of the GNU General Public License as published
     24%     by the Free Software Foundation; either version 2 of the license,
     25%     or (at your option) any later version.
     26%
     27%     UVMAT is distributed in the hope that it will be useful,
     28%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     29%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     30%     GNU General Public License (see LICENSE.txt) for more details.
     31%=======================================================================
     32
    1533function GUI_input=clean_civ_cmx(num_i1,num_i2,num_j1,num_j2,Series) %(filecell,filecell_1,num_i,num_j,vel_type,field,param);
    1634
  • trunk/src/series/extract_rdvision.m

    r798 r810  
    3939%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    4040%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     41
     42%=======================================================================
     43% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     44%   http://www.legi.grenoble-inp.fr
     45%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     46%
     47%     This file is part of the toolbox UVMAT.
     48%
     49%     UVMAT is free software; you can redistribute it and/or modify
     50%     it under the terms of the GNU General Public License as published
     51%     by the Free Software Foundation; either version 2 of the license,
     52%     or (at your option) any later version.
     53%
     54%     UVMAT is distributed in the hope that it will be useful,
     55%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     56%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     57%     GNU General Public License (see LICENSE.txt) for more details.
     58%=======================================================================
    4159
    4260function ParamOut=extract_rdvision(Param) %default output=relabel_i_j(Param)
  • trunk/src/series/float_tracking.m

    r804 r810  
    5858%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    5959
     60%=======================================================================
     61% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     62%   http://www.legi.grenoble-inp.fr
     63%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     64%
     65%     This file is part of the toolbox UVMAT.
     66%
     67%     UVMAT is free software; you can redistribute it and/or modify
     68%     it under the terms of the GNU General Public License as published
     69%     by the Free Software Foundation; either version 2 of the license,
     70%     or (at your option) any later version.
     71%
     72%     UVMAT is distributed in the hope that it will be useful,
     73%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     74%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     75%     GNU General Public License (see LICENSE.txt) for more details.
     76%=======================================================================
     77
    6078function ParamOut=particle_tracking(Param)
    6179
  • trunk/src/series/ima2vol.m

    r171 r810  
    1414%
    1515%----------------------------------------------------------------------
     16
     17%=======================================================================
     18% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     19%   http://www.legi.grenoble-inp.fr
     20%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     21%
     22%     This file is part of the toolbox UVMAT.
     23%
     24%     UVMAT is free software; you can redistribute it and/or modify
     25%     it under the terms of the GNU General Public License as published
     26%     by the Free Software Foundation; either version 2 of the license,
     27%     or (at your option) any later version.
     28%
     29%     UVMAT is distributed in the hope that it will be useful,
     30%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     31%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     32%     GNU General Public License (see LICENSE.txt) for more details.
     33%=======================================================================
     34
    1635function GUI_input=ima2vol(num_i1,num_i2,num_j1,num_j2,Series)
    1736%requests for the visibility of input windows in the GUI series  (activated directly by the selection in the menu ACTION)
  • trunk/src/series/ima_levels.m

    r784 r810  
    4040%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    4141%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    42  
     42
     43%=======================================================================
     44% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     45%   http://www.legi.grenoble-inp.fr
     46%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     47%
     48%     This file is part of the toolbox UVMAT.
     49%
     50%     UVMAT is free software; you can redistribute it and/or modify
     51%     it under the terms of the GNU General Public License as published
     52%     by the Free Software Foundation; either version 2 of the license,
     53%     or (at your option) any later version.
     54%
     55%     UVMAT is distributed in the hope that it will be useful,
     56%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     57%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     58%     GNU General Public License (see LICENSE.txt) for more details.
     59%=======================================================================
     60
    4361function ParamOut=ima_levels (Param)
    4462
  • trunk/src/series/ima_levels_batch.m

    r348 r810  
    1313%Series: Matlab structure containing information set by the series interface% relabel_i_j: relabel an image series with two indices, according to the time matrix given by ImaDoc
    1414%----------------------------------------------------------------------
     15
     16%=======================================================================
     17% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     18%   http://www.legi.grenoble-inp.fr
     19%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     20%
     21%     This file is part of the toolbox UVMAT.
     22%
     23%     UVMAT is free software; you can redistribute it and/or modify
     24%     it under the terms of the GNU General Public License as published
     25%     by the Free Software Foundation; either version 2 of the license,
     26%     or (at your option) any later version.
     27%
     28%     UVMAT is distributed in the hope that it will be useful,
     29%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     30%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     31%     GNU General Public License (see LICENSE.txt) for more details.
     32%=======================================================================
     33
    1534function GUI_input=ima_levels_batch(num_i1,num_i2,num_j1,num_j2,Series)
    1635%requests for the visibility of input windows in the GUI series  (activated directly by the selection in the menu ACTION)
  • trunk/src/series/lumin_calib.m

    r647 r810  
    11% 'lumin_cali': check the luminosity of the camera lens versus distance to image center
    22%----------------------------------------------------------------------
     3
     4%=======================================================================
     5% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     6%   http://www.legi.grenoble-inp.fr
     7%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     8%
     9%     This file is part of the toolbox UVMAT.
     10%
     11%     UVMAT is free software; you can redistribute it and/or modify
     12%     it under the terms of the GNU General Public License as published
     13%     by the Free Software Foundation; either version 2 of the license,
     14%     or (at your option) any later version.
     15%
     16%     UVMAT is distributed in the hope that it will be useful,
     17%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     18%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     19%     GNU General Public License (see LICENSE.txt) for more details.
     20%=======================================================================
    321
    422function input_list=lumin_calib (num_i1,num_i2,num_j1,num_j2,Series)
  • trunk/src/series/merge_proj.m

    r784 r810  
    3838%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    3939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     40
     41%=======================================================================
     42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     43%   http://www.legi.grenoble-inp.fr
     44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     45%
     46%     This file is part of the toolbox UVMAT.
     47%
     48%     UVMAT is free software; you can redistribute it and/or modify
     49%     it under the terms of the GNU General Public License as published
     50%     by the Free Software Foundation; either version 2 of the license,
     51%     or (at your option) any later version.
     52%
     53%     UVMAT is distributed in the hope that it will be useful,
     54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     56%     GNU General Public License (see LICENSE.txt) for more details.
     57%=======================================================================
    4058
    4159function ParamOut=merge_proj(Param)
  • trunk/src/series/merge_proj_special.m

    r783 r810  
    3838%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    3939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     40
     41%=======================================================================
     42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     43%   http://www.legi.grenoble-inp.fr
     44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     45%
     46%     This file is part of the toolbox UVMAT.
     47%
     48%     UVMAT is free software; you can redistribute it and/or modify
     49%     it under the terms of the GNU General Public License as published
     50%     by the Free Software Foundation; either version 2 of the license,
     51%     or (at your option) any later version.
     52%
     53%     UVMAT is distributed in the hope that it will be useful,
     54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     56%     GNU General Public License (see LICENSE.txt) for more details.
     57%=======================================================================
    4058
    4159function ParamOut=merge_proj(Param)
  • trunk/src/series/particle_tracking.m

    r804 r810  
    5858%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    5959
     60%=======================================================================
     61% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     62%   http://www.legi.grenoble-inp.fr
     63%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     64%
     65%     This file is part of the toolbox UVMAT.
     66%
     67%     UVMAT is free software; you can redistribute it and/or modify
     68%     it under the terms of the GNU General Public License as published
     69%     by the Free Software Foundation; either version 2 of the license,
     70%     or (at your option) any later version.
     71%
     72%     UVMAT is distributed in the hope that it will be useful,
     73%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     74%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     75%     GNU General Public License (see LICENSE.txt) for more details.
     76%=======================================================================
     77
    6078function ParamOut=particle_tracking(Param)
    6179
  • trunk/src/series/relabel_i_j.m

    r784 r810  
    3939%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    4040%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     41
     42%=======================================================================
     43% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     44%   http://www.legi.grenoble-inp.fr
     45%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     46%
     47%     This file is part of the toolbox UVMAT.
     48%
     49%     UVMAT is free software; you can redistribute it and/or modify
     50%     it under the terms of the GNU General Public License as published
     51%     by the Free Software Foundation; either version 2 of the license,
     52%     or (at your option) any later version.
     53%
     54%     UVMAT is distributed in the hope that it will be useful,
     55%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     56%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     57%     GNU General Public License (see LICENSE.txt) for more details.
     58%=======================================================================
    4159
    4260function ParamOut=relabel_i_j(Param) %default output=relabel_i_j(Param)
  • trunk/src/series/sub_background.m

    r802 r810  
    5050%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    5151%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    52    
     52
     53%=======================================================================
     54% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     55%   http://www.legi.grenoble-inp.fr
     56%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     57%
     58%     This file is part of the toolbox UVMAT.
     59%
     60%     UVMAT is free software; you can redistribute it and/or modify
     61%     it under the terms of the GNU General Public License as published
     62%     by the Free Software Foundation; either version 2 of the license,
     63%     or (at your option) any later version.
     64%
     65%     UVMAT is distributed in the hope that it will be useful,
     66%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     67%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     68%     GNU General Public License (see LICENSE.txt) for more details.
     69%=======================================================================
     70
    5371function ParamOut=sub_background (Param)
    5472
  • trunk/src/series/time_series.m

    r784 r810  
    3939%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    4040%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     41
     42%=======================================================================
     43% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     44%   http://www.legi.grenoble-inp.fr
     45%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     46%
     47%     This file is part of the toolbox UVMAT.
     48%
     49%     UVMAT is free software; you can redistribute it and/or modify
     50%     it under the terms of the GNU General Public License as published
     51%     by the Free Software Foundation; either version 2 of the license,
     52%     or (at your option) any later version.
     53%
     54%     UVMAT is distributed in the hope that it will be useful,
     55%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     56%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     57%     GNU General Public License (see LICENSE.txt) for more details.
     58%=======================================================================
    4159
    4260function ParamOut=time_series(Param)
  • trunk/src/series/turb_stat.m

    r784 r810  
    3939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    4040
     41%=======================================================================
     42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     43%   http://www.legi.grenoble-inp.fr
     44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     45%
     46%     This file is part of the toolbox UVMAT.
     47%
     48%     UVMAT is free software; you can redistribute it and/or modify
     49%     it under the terms of the GNU General Public License as published
     50%     by the Free Software Foundation; either version 2 of the license,
     51%     or (at your option) any later version.
     52%
     53%     UVMAT is distributed in the hope that it will be useful,
     54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     56%     GNU General Public License (see LICENSE.txt) for more details.
     57%=======================================================================
     58
    4159function ParamOut=turb_stat(Param)
    4260
  • trunk/src/series/vel2vol.m

    r381 r810  
    22% (specific to RDvision system)
    33%----------------------------------------------------------------------
     4
     5%=======================================================================
     6% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
     7%   http://www.legi.grenoble-inp.fr
     8%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
     9%
     10%     This file is part of the toolbox UVMAT.
     11%
     12%     UVMAT is free software; you can redistribute it and/or modify
     13%     it under the terms of the GNU General Public License as published
     14%     by the Free Software Foundation; either version 2 of the license,
     15%     or (at your option) any later version.
     16%
     17%     UVMAT is distributed in the hope that it will be useful,
     18%     but WITHOUT ANY WARRANTY; without even the implied warranty of
     19%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20%     GNU General Public License (see LICENSE.txt) for more details.
     21%=======================================================================
     22
    423function GUI_input=vel2vol(num_i1,num_i2,num_j1,num_j2,Series)
    524%requests for the visibility of input windows in the GUI series  (activated directly by the selection in the menu ACTION)
Note: See TracChangeset for help on using the changeset viewer.