Refresh plot using switch case with dropdown menu in App designer

조회 수: 14 (최근 30일)
reaujahn
reaujahn 2022년 1월 10일
답변: Cris LaPierre 2023년 8월 4일
Hi everyone,
I have designed an app, which has a drop down menu to select what will be ploted and it works fine. I want to improve the app, so that when I change the value of X or Y lim in numeric fields it will be automatically refreshed. For now, after changing the value in the numeric field I have to select again the same plot in my dropdown menu, to see the plot with the new limits for both axes.
For the limits on the X and Y Axes I am using following commands:
xlim(app.UIAxes, [app.Xmin app.Xmax])
ylim(app.UIAxes, [app.Ymin app.Ymax])
for this app I should avoid using the timer function. Is there another way to refresh the Axes and see the plot with the new limit?
Thank you!

답변 (1개)

Cris LaPierre
Cris LaPierre 2023년 8월 4일
Add the code you want to run when you interact with a control to the callback functino for that component.All callbacks are functions, so you can call a callback from another callback.
Here, it sounds like you need to call the plot callback function from the edit field callbacks.

카테고리

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