How can I change the value of a text field based on plot selection in MATLAB APP Designer?

조회 수: 20 (최근 30일)
I have multiple tests with similar data I am plotting against one another.
Is it possible for me to get MATLAB APP Designer to populate a text field with test details based on the plot I click on or hover my mouse over?
I am using RMATLAB 2021b

답변 (1개)

Kevin Holly
Kevin Holly 2022년 4월 12일
Christian,
Please see the app attached.
You could create a callback function to the Axes by right clicking >Callbacks>Add UIAxesButtonDown callback.
In the example below (and app attached), I took the string from the axes title and place it in the edit field and label.
function UIAxesButtonDown(app, event)
app.EditField.Value = app.UIAxes.Title.String; % For edit field
app.Label.Text = app.UIAxes.Title.String; %For label
end

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by