Mercurial > hg > aimmat
view aim-mat/gui/edit_duration.m @ 0:74dedb26614d
Initial checkin of AIM-MAT version 1.5 (6.4.2011).
author | tomwalters |
---|---|
date | Fri, 20 May 2011 12:32:31 +0100 |
parents | |
children | 20ada0af3d7d |
line wrap: on
line source
% procedure for 'aim-mat' % % INPUT VALUES: % % RETURN VALUE: % % % (c) 2011, University of Southampton % Maintained and written by Stefan Bleeck (bleec@gmail.com) % http://www.soton.ac.uk/aim function handles=edit_duration(hObject, eventdata, handles) curval=get(hObject,'String'); curval=str2num(curval); handles.slideredit_duration=... slidereditcontrol_set_raweditvalue(handles.slideredit_duration,curval); sig=handles.data.signal; if handles.info.current_plot>=6 %sai has additionally the start time below: current_start_time=slidereditcontrol_get_value(handles.slideredit_duration); % the new value framelen=getcurrentframestarttime(handles.data.sai{2})-getcurrentframestarttime(handles.data.sai{1}); nr_frames=length(handles.data.sai); current_frame_nr=round((current_start_time-getminimumtime(sig))/framelen)+1; % plus 1 because of the duration of the frame itself current_frame_nr=min(nr_frames,current_frame_nr); current_frame_nr=max(1,current_frame_nr); handles.currentslidereditcombi=slidereditcontrol_set_value(handles.currentslidereditcombi,current_frame_nr); realval=(current_frame_nr-1)*framelen+getminimumtime(sig); handles.slideredit_duration=... slidereditcontrol_set_value(handles.slideredit_duration,realval); else % check range start=slidereditcontrol_get_value(handles.currentslidereditcombi); dur=slidereditcontrol_get_value(handles.slideredit_duration); siglen=getmaximumtime(sig); if start+dur>siglen dur=siglen-start; end handles.slideredit_duration=... slidereditcontrol_set_value(handles.slideredit_duration,dur); % set the range of the start_slider accordingly len=slidereditcontrol_get_value(handles.slideredit_duration); handles.currentslidereditcombi=slidereditcontrol_set_range(handles.currentslidereditcombi,len); % the duration end