displaying values

2 views (last 30 days)
FIR
FIR on 24 Feb 2012
I have a sine wave,in which i have take positive curve(upper curve), now if i click anywhere in that graph i want to display values of x,y,using gui ,please help

Accepted Answer

Oleg Komarov
Oleg Komarov on 24 Feb 2012
You can use datacursormode to display datatips.
Check the examples.
EDIT the simplest example
function myGUI
figure('menubar','none','name','myGUI','numbertitle','off','resize','off');
plot(1:10)
datacursormode
end
  5 Comments
FIR
FIR on 27 Feb 2012
Oleg if i click on that grapg where ever on the line and near by the line the values of x and y must be displayed,in each x and y boxes
Oleg Komarov
Oleg Komarov on 27 Feb 2012
You have to save it as a function and then call the function myGUI to see the effect.

Sign in to comment.

More Answers (0)

Categories

Find more on Special Functions in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!