App Designer Radio Button

4 visualizzazioni (ultimi 30 giorni)
Jonathan Moorman
Jonathan Moorman il 23 Giu 2020
Commentato: Ashish Azad il 23 Giu 2020
Hi! I currently have a problem with a radio button I am using for app designer. The purpose of my radio button is to select one of these three equations to be calculated based on what the user needs. The problem occurs when the app is closed then reopened, the "Linear" button is automatically selected; however, the code does not count this as actually selecting the linear button, and it will perform the calculations based on what button was selected just before the app was closed. So if you want to use the linear button on startup, you have to unselect it then selected it again. Not very user friendly. Any way to fix this? Thanks
Here is my code that controls the radio button then calculates the notch response based on the selection.
if Y == 1
NotchResponse = (app.EquationsSlopeEditField.Value).*(Depth)+ app.EquationsYInterceptEditField.Value;
elseif Y == 2
NotchResponse = (app.EquationsSlopeEditField.Value).*(log(Depth))+ app.EquationsYInterceptEditField.Value;
elseif Y == 3
NotchResponse = (app.EquationsSlopeEditField.Value).*((Depth).^(app.ExponentEditField.Value));
end

Risposta accettata

Ashish Azad
Ashish Azad il 23 Giu 2020
Hi Jonathan,
A simple solution to this problem is to select the Linear button in the startup function
If you are not able to find startup function then you can add it from callbacks.
I highly encourage you to use startup function for the initialization of everything, so the app starts without any glitches.
Let me know if this helped you
  2 Commenti
Jonathan Moorman
Jonathan Moorman il 23 Giu 2020
That worked great! It also helped me fixed more than just one problem. Thanks
Ashish Azad
Ashish Azad il 23 Giu 2020
I am glad that it helped you, thanks for the appreciation

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by