Data cursor on GUI plot
4 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have a GUI with a table and a plot as you can see: </matlabcentral/answers/uploaded_files/4822/guisanstitre.png>
I woudl like to put a Data cursor on my plot to get the value of points.
I try to do :
hPlot=plot(handles.axes1,courbe);figure(gcf) % display my plot
dcm_obj = datacursormode(hPlot);
datacursormode on;
set(dcm_obj,'UpdateFcn', @myupdatefcn )
but matlab return an error:
Error using datacursormode (line 144)
Invalid figure handle
Could you help me, maybe there is a better way to get a data cursor?
Thank you
0 件のコメント
回答 (2 件)
Sébastien MAILFERT
2018 年 9 月 25 日
Same problem, 5 years later :-(
1 件のコメント
Reza Sadeghi
2020 年 2 月 25 日
編集済み: Reza Sadeghi
2020 年 2 月 25 日
I think the following line may help you
[x,y] = ginput(1)
参考
カテゴリ
Help Center および File Exchange で Data Exploration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!