Changeset 1098 for trunk/src/series/sub_background_special.m
- Timestamp:
- Apr 13, 2021, 7:19:35 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/sub_background_special.m
r1097 r1098 50 50 % UVMAT is free software; you can redistribute it and/or modify 51 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, 52 % by the Free Software Foundation; either version 2 of the license,series 53 53 % or (at your option) any later version. 54 54 % … … 66 66 ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) 67 67 ParamOut.WholeIndexRange='on';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) 68 ParamOut.NbSlice='o ff'; %nbre of slices ('off' by default)68 ParamOut.NbSlice='on'; %nbre of slices ('off' by default) 69 69 ParamOut.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) 70 70 ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) … … 93 93 end 94 94 %% estimate the position of bottom and mask for each Z Index 95 BottomIndex=[1900 1800 1700 1650 1650 1600 1600 1600 1600 1600 1600]; 95 NbSlice=Param.IndexRange.NbSlice; 96 switch NbSlice 97 case 11 98 BottomIndex=[1900 1800 1700 1650 1650 1600 1600 1600 1600 1600 1600]; 99 case 4 100 BottomIndex=[1950 1850 1740 1700]; 101 end 96 102 MaxIndex=BottomIndex+100; 97 103 MinIndex=BottomIndex-100; 104 98 105 maskindex=[665 1080];% range of x index perturbed by shadows 99 NbSlice=11;100 106 Bfilter=ones(1,20)/20; 101 107 %% root input file names and nomenclature type (cell arrays with one element) 102 OutputDir=[Param.OutputSubDir Param.OutputDirExt]; 108 OutputDir=[Param.OutputSubDir Param.OutputDirExt];4 103 109 nbj=numel(Param.IndexRange.first_i:Param.IndexRange.last_i); 104 110 for i_ind=Param.IndexRange.first_i:Param.IndexRange.last_i
Note: See TracChangeset
for help on using the changeset viewer.