Changeset 381 for trunk/src/series
- Timestamp:
- Jan 29, 2012, 2:32:50 PM (13 years ago)
- Location:
- trunk/src/series
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/aver_stat.m
r374 r381 61 61 if test_object%isfield(Series,'sethandles') 62 62 hset_object=findobj(allchild(0),'tag','set_object'); 63 ProjObject=read_set_object(guidata(hset_object)); 63 %ProjObject=read_set_object(guidata(hset_object)); 64 ProjObject=read_GUI(hset_object); 64 65 %answeryes=questdlg({['field series projected on ' Series.ProjObject.Style]}); 65 66 answeryes=msgbox_uvmat('INPUT_Y-N',['field series projected on ' ProjObject.Style ' before averaging']); -
trunk/src/series/merge_proj.m
r374 r381 53 53 if test_object 54 54 hset_object=findobj(allchild(0),'tag','set_object'); 55 ProjObject=read_set_object(guidata(hset_object)); 55 %ProjObject=read_set_object(guidata(hset_object)); 56 ProjObject=read_GUI(hset_object); 56 57 if ~isfield(ProjObject,'Style') 57 58 msgbox_uvmat('ERROR','Undefined projection object style') -
trunk/src/series/time_series.m
r374 r381 54 54 if test_object 55 55 hset_object=findobj(allchild(0),'tag','set_object'); 56 ProjObject=read_set_object(guidata(hset_object)); 56 % ProjObject=read_set_object(guidata(hset_object)); 57 ProjObject=read_GUI(hset_object); 57 58 answeryes=msgbox_uvmat('INPUT_Y-N',['field series projected on ' ProjObject.Style]); 58 59 if ~isequal(answeryes,'Yes') -
trunk/src/series/vel2vol.m
r208 r381 38 38 if test_object%isfield(Series,'sethandles') 39 39 hset_object=findobj(allchild(0),'tag','set_object'); 40 ProjObject=read_set_object(guidata(hset_object)); 40 % ProjObject=read_set_object(guidata(hset_object)); 41 ProjObject=read_GUI(hset_object); 41 42 if ~strcmp(ProjObject.Style,'volume')&&~strcmp(ProjObject.ProjMode,'interp') 42 43 msgbox_uvmat('ERROR',['a volume with projection mode interp must be defined']);
Note: See TracChangeset
for help on using the changeset viewer.