フィルターのクリア

Can I use ginput (or an analog) in the 2016a App Designer?

2 ビュー (過去 30 日間)
alex
alex 2016 年 5 月 28 日
回答済み: Adam Danz 2022 年 8 月 7 日
Is there a way to use the ginput function (https://www.mathworks.com/help/matlab/ref/ginput.html) in the new App Designer? Or is there another function that allows you to generate points by clicking on parts of an Axes (Line and Scatter)? For reference, I would like to be able to do something like this:
function startupFcn(app)
%uiopen
app.xdata = linspace(0, 3*pi, 10);
app.ydata = cos(app.xdata) + rand(1, 10);
plot(app.UIAxes, app.xdata, app.ydata, 'Linewidth',.7);
[x,y] = ginput(2);
end
Thank you!

採用された回答

Adam Danz
Adam Danz 2022 年 8 月 7 日
ginput is supported in AppDesigner figures starting in MATLAB R2020b
For more info:

その他の回答 (3 件)

Ian Hersom
Ian Hersom 2016 年 8 月 15 日
It hasn't been working for me, I sure would like it to though.

glvbx unbsl
glvbx unbsl 2018 年 8 月 12 日
Need a solution to a similar problem in the App Designer. I would like to obtain the coordinates of a point on a figure (actually a displayed image in that figure) using the mouse click. But I am not able to implement this in the App Designer. When using ginput, it opens a new figure. I can't set the UIFigure as the current figure using figure(app.UIFigure). Can I direct ginput to use this UIFigure?
I tried [x,y] = getpts(app.UIAxes); but I get an error message "Functionality not supported with figures created with the uifigure function."
I believe I am missing something, it is unlikely that App Designer doesn't allow picking points off a uifigure.

Michael Werthmann
Michael Werthmann 2019 年 3 月 7 日
ginput si not supported. See link for more Information
https://de.mathworks.com/help/releases/R2018a/matlab/creating_guis/graphics-support-in-app-designer.html

カテゴリ

Help Center および File ExchangeDevelop uifigure-Based Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by