Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@plottools/datacursormode.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
function output_txt = datacursormode(obj, event_obj) % Display the position of the data cursor % obj Currently not used (empty) % event_obj Handle to event object % output_txt Data cursor text string (string or cell array of strings). t0 = get(get(get(event_obj, 'Target'), 'Parent'), 'UserData'); pos = get(event_obj,'Position'); output_txt = {['X: ',char(t0 + pos(1))],... ['Y: ',num2str(pos(2),4)]}; % If there is a Z-coordinate in the position, display it as well if length(pos) > 2 output_txt{end+1} = ['Z: ',num2str(pos(3),4)]; end output_txt{end+1} = ['x-value: ', num2str(pos(1),4)];