view m-toolbox/classes/+utils/@plottools/datacursormode.m @ 1:2014ba5b353a
database-connection-manager
Remove old code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Sat, 03 Dec 2011 18:13:55 +0100 (2011-12-03)
parents
f0afece42f48
children
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)];