Changeset 810 for trunk/src/series
- Timestamp:
- Aug 13, 2014, 3:01:27 AM (10 years ago)
- Location:
- trunk/src/series
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/LIF_series.m
r782 r810 2 2 % -process LIF images 3 3 %---------------------------------------------------------------------- 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 4 23 function GUI_input=LIF_series(num_i1,num_i2,num_j1,num_j2,Series); 5 24 -
trunk/src/series/aver_stat.m
r784 r810 38 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 39 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 40 58 41 59 function ParamOut=aver_stat(Param) -
trunk/src/series/aver_synchro.m
r787 r810 38 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 39 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 40 58 41 59 function ParamOut=aver_synchro(Param) -
trunk/src/series/avi2png.m
r176 r810 1 1 % 'avi2png': copy an avi movie to a series of B/W .png images (take the average of green and blue color components) 2 2 %---------------------------------------------------------------------- 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 3 22 function GUI_input=avi2png(num_i1,num_i2,num_j1,num_j2,Series) 4 23 %% 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 1 19 function ParamOut=beam_forming(Param) 2 20 -
trunk/src/series/calc_background.m
r245 r810 19 19 %---------------------------------------------------------------------- 20 20 % Method: 21 %calculate the background image by sorting the luminosity of each point22 % over a sliding sub-sequence of 'nbaver_ima' images. 23 %The luminosity value of rank 'rank' is selected as the24 %'background'. rank=nbimages/2 gives the median value. Smaller values are appropriate25 %for a dense set of particles. The extrem value rank=1 gives the true minimum26 % 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. 27 27 % 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 34 52 function GUI_input=calc_background (num_i1,num_i2,num_j1,num_j2,Series) 35 53 -
trunk/src/series/check_data_files.m
r784 r810 31 31 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 32 32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 33 51 34 52 function ParamOut=check_data_files(Param) -
trunk/src/series/check_peaklock.m
r784 r810 44 44 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 45 45 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 46 65 function ParamOut=check_peaklocking(Param) 47 66 -
trunk/src/series/civ_input.m
r801 r810 8 8 % INPUT: 9 9 % 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 10 15 % 11 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA12 % Copyright 2011-2014, LEGI / CNRS UJF G-INP, Joel.Sommeria@legi.grenoble-inp.fr13 %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA14 16 % This file is part of the toolbox UVMAT. 15 17 % 16 18 % UVMAT is free software; you can redistribute it and/or modify 17 % it under the terms of the GNU General Public License as published by18 % the Free Software Foundation; either version 2 of the License, or19 % (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. 20 22 % 21 23 % UVMAT is distributed in the hope that it will be useful, 22 24 % but WITHOUT ANY WARRANTY; without even the implied warranty of 23 25 % 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 26 29 function varargout = civ_input(varargin) 27 30 -
trunk/src/series/civ_series.m
r801 r810 21 21 % .Patch2: 22 22 % 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 23 28 % 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 % 29 31 % UVMAT is free software; you can redistribute it and/or modify 30 % it under the terms of the GNU General Public License as published by31 % the Free Software Foundation; either version 2 of the License, or32 % (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 % 34 36 % UVMAT is distributed in the hope that it will be useful, 35 37 % but WITHOUT ANY WARRANTY; without even the implied warranty of 36 38 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 37 % GNU General Public License ( open UVMAT/COPYING.txt) for more details.38 % AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA39 % GNU General Public License (see LICENSE.txt) for more details. 40 %======================================================================= 39 41 40 42 function [Data,errormsg,result_conv]= civ_series(Param) -
trunk/src/series/clean_civ_cmx.m
r340 r810 12 12 %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) 13 13 %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 14 19 % 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 15 33 function 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); 16 34 -
trunk/src/series/extract_rdvision.m
r798 r810 39 39 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 40 40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 41 59 42 60 function ParamOut=extract_rdvision(Param) %default output=relabel_i_j(Param) -
trunk/src/series/float_tracking.m
r804 r810 58 58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 59 59 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 60 78 function ParamOut=particle_tracking(Param) 61 79 -
trunk/src/series/ima2vol.m
r171 r810 14 14 % 15 15 %---------------------------------------------------------------------- 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 16 35 function GUI_input=ima2vol(num_i1,num_i2,num_j1,num_j2,Series) 17 36 %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 40 40 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 41 41 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 43 61 function ParamOut=ima_levels (Param) 44 62 -
trunk/src/series/ima_levels_batch.m
r348 r810 13 13 %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 14 14 %---------------------------------------------------------------------- 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 15 34 function GUI_input=ima_levels_batch(num_i1,num_i2,num_j1,num_j2,Series) 16 35 %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 1 1 % 'lumin_cali': check the luminosity of the camera lens versus distance to image center 2 2 %---------------------------------------------------------------------- 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 %======================================================================= 3 21 4 22 function input_list=lumin_calib (num_i1,num_i2,num_j1,num_j2,Series) -
trunk/src/series/merge_proj.m
r784 r810 38 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 39 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 40 58 41 59 function ParamOut=merge_proj(Param) -
trunk/src/series/merge_proj_special.m
r783 r810 38 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 39 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 40 58 41 59 function ParamOut=merge_proj(Param) -
trunk/src/series/particle_tracking.m
r804 r810 58 58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 59 59 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 60 78 function ParamOut=particle_tracking(Param) 61 79 -
trunk/src/series/relabel_i_j.m
r784 r810 39 39 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 40 40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 41 59 42 60 function ParamOut=relabel_i_j(Param) %default output=relabel_i_j(Param) -
trunk/src/series/sub_background.m
r802 r810 50 50 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 51 51 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 53 71 function ParamOut=sub_background (Param) 54 72 -
trunk/src/series/time_series.m
r784 r810 39 39 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 40 40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 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 %======================================================================= 41 59 42 60 function ParamOut=time_series(Param) -
trunk/src/series/turb_stat.m
r784 r810 39 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 40 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 %======================================================================= 58 41 59 function ParamOut=turb_stat(Param) 42 60 -
trunk/src/series/vel2vol.m
r381 r810 2 2 % (specific to RDvision system) 3 3 %---------------------------------------------------------------------- 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 4 23 function GUI_input=vel2vol(num_i1,num_i2,num_j1,num_j2,Series) 5 24 %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.