GUI manual data selection

1 回表示 (過去 30 日間)
Lukas
Lukas 2012 年 4 月 19 日
Is it possible to have the user select a data value from a plot using a cursor click on the plot?

採用された回答

Jan
Jan 2012 年 4 月 19 日
Yes. The actual implementation depends on the type of the plot.
H = plot(1:10);
set(H, 'ButtonDownFcn', @myCallback);
function myCallback(ObjH, EvenData)
set(ObjH, 'Color', rand(1, 3));
AxesH = ancestor(ObjH, 'axes');
disp(get(AxesH, 'CurrentPoint'));
  1 件のコメント
Lukas
Lukas 2012 年 4 月 19 日
Thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by