Hi Benito, We had a uni project and it was my task to make a GUI. Your videos were very helpful in getting acquainted with app designer and getting a feeling for how things work. Thank you :)
you prolly dont give a shit but if you are bored like me atm then you can stream all the new series on InstaFlixxer. Been binge watching with my gf lately :)
Hi Benito, I did follow the video and got the app installed. I would like to have the same app get installed in the tablet. Can you please tell me how to do that?
I have a quick question please, I have created a GUI with your tutorial and I aim to link the push buttons on the GUI to my database (in access). Any ideas how I can create that link? Thanks very much.
Subscribed immediately, but is there a method to combine multiple apps Gui's into one Gui with buttons that lead to each app? I couldn't find a video that explains that, would be great if you added it. Thanks again.
Hi Mohamed, Thankyou for your feedback. I will be posting a tutorials on this soon. Meanwhile, check out the example (link below) from Matlab on multi-window apps. uk.mathworks.com/help/matlab/creating_guis/multiwindow-app-gui-in-app-designer.html
Let me thank you for those helpful tutorials sir. I was wondering if you can suggest a solution for my problem. I have designed an app using App Designer, this app is plotting the Simulink Models data in the background. Everything works very well but when I package it using Standalone Desktop App I face a problem. The problem is my generated .exe app is not able to run the Simulink Models in the background, I tried a lot without any success. i am using the following method to plot the data from Simulink mode: plot(app.UIAxes, simout.SineWaveValue.time, simout.SineWaveValue.signals(1).values); Is that any idea to tell why my standalone app is not running the background Simulink models? Thank you in advance.
I found the solution for who are facing the same problem. All you need to do is to use setVariable instead of set_para, as the following:? simin = simin.setVariable('Your Block Name', 100); simin = simulink.compiler.configureForDeployment(simin); simOut= sim(simin); plot(app.UIAxes, simOut.SineWaveValue.time, simOut.SineWaveValue.signals.values);
@@BenitoSebastian Thanks for your reply I mean, in this tutorial, you use Panel to put the Label and Button in one place. If I don't use panel, what's the difference? Or the purpose is just to grouping the many component in one place (panel)? The next question, out of the topic above, If I want to show the correlation plot (corrplot), how to put the figure result in the UIAxes/UIImage? because it appear in new window called Figure1. I want it showed up in the container in my main app.
Hi Firza, Sorry for the late reply. Panels are mainly used to organise components to create a user friendly application. You can create apps without panels but if you look at professional softwares out there, most of them utilise the panels. In regards to your second question, to show the figure in the UI figure you need define it as plot(app.UIAxes,x,y). Hope that helps. All the best!
Thank you for your reply, Benito That works! Thank you Sorry I have another question, if I have a corrplot, which container will be place its result, UIAxes or UIFigure?
Hi Benito,
We had a uni project and it was my task to make a GUI. Your videos were very helpful in getting acquainted with app designer and getting a feeling for how things work. Thank you :)
Glad it helped!
Looks like I found the thing I am going to binge on tonight ;) Very well explained. Subscribed!
you prolly dont give a shit but if you are bored like me atm then you can stream all the new series on InstaFlixxer. Been binge watching with my gf lately :)
@Joel Levi Yea, have been watching on InstaFlixxer for since november myself :)
Thanks, Benito your videos are really helpful!
Bro i really enjoy your lectures. these are really awesome
Great vídeo, great explanation.
Hi, is this package app feature comes in student version of matlab?
Hi Benito,
I did follow the video and got the app installed. I would like to have the same app get installed in the tablet. Can you please tell me how to do that?
Wonderful tutorial.
My question is can this created apps be used outside Matlab like an exe file or an Android app?
I have a quick question please, I have created a GUI with your tutorial and I aim to link the push buttons on the GUI to my database (in access). Any ideas how I can create that link? Thanks very much.
Hi @benito, if I would like to share this app to a person that dosen't have a Matlab, what I have to do? I already did de package an app. thank you
Sir, please make a video on deploying the app on the web so everyone can access it from anywhere. Thanks
can we share the app? and if yes then the person with whom we have shared can be able to edit it ?
Subscribed immediately, but is there a method to combine multiple apps Gui's into one Gui with buttons that lead to each app? I couldn't find a video that explains that, would be great if you added it. Thanks again.
Hi Mohamed,
Thankyou for your feedback. I will be posting a tutorials on this soon. Meanwhile, check out the example (link below) from Matlab on multi-window apps. uk.mathworks.com/help/matlab/creating_guis/multiwindow-app-gui-in-app-designer.html
Let me thank you for those helpful tutorials sir.
I was wondering if you can suggest a solution for my problem.
I have designed an app using App Designer, this app is plotting the Simulink Models data in the background.
Everything works very well but when I package it using Standalone Desktop App I face a problem.
The problem is my generated .exe app is not able to run the Simulink Models in the background, I tried a lot without any success.
i am using the following method to plot the data from Simulink mode:
plot(app.UIAxes, simout.SineWaveValue.time, simout.SineWaveValue.signals(1).values);
Is that any idea to tell why my standalone app is not running the background Simulink models?
Thank you in advance.
I found the solution for who are facing the same problem.
All you need to do is to use setVariable instead of set_para, as the following:?
simin = simin.setVariable('Your Block Name', 100);
simin = simulink.compiler.configureForDeployment(simin);
simOut= sim(simin);
plot(app.UIAxes, simOut.SineWaveValue.time, simOut.SineWaveValue.signals.values);
Somehow I cant klick on "standalone desktop app" and "web app" can anyone help me? my professor wants me to do it with standalone deskop app
How did you move multiple things at once? When I highlight multiple things at once I still can't move them all.
Hi,
You need to group them first then you can move them together.
how does one move that app to web based?
Hi Benito
your explanation is so clear and great!
I want to ask you about what is the different between using Panel UI or not?
Thank you
Hi Firza,
Do you mean what is the difference between using GUIDE and app designer?
@@BenitoSebastian
Thanks for your reply
I mean, in this tutorial, you use Panel to put the Label and Button in one place. If I don't use panel, what's the difference? Or the purpose is just to grouping the many component in one place (panel)?
The next question, out of the topic above, If I want to show the correlation plot (corrplot), how to put the figure result in the UIAxes/UIImage? because it appear in new window called Figure1. I want it showed up in the container in my main app.
Hi Firza,
Sorry for the late reply. Panels are mainly used to organise components to create a user friendly application. You can create apps without panels but if you look at professional softwares out there, most of them utilise the panels.
In regards to your second question, to show the figure in the UI figure you need define it as plot(app.UIAxes,x,y). Hope that helps. All the best!
Thank you for your reply, Benito
That works! Thank you
Sorry I have another question, if I have a corrplot, which container will be place its result, UIAxes or UIFigure?
hello, i have a project. When ı press a button a want to open a new windows how can ı do that?