MATLAB AppDesigner | Tutorial 3 | How to compile/package an app

Поделиться
HTML-код
  • Опубликовано: 2 фев 2025

Комментарии • 31

  • @ADaBaker95
    @ADaBaker95 2 года назад +4

    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 :)

  • @ShayanAsim
    @ShayanAsim 4 года назад +3

    Looks like I found the thing I am going to binge on tonight ;) Very well explained. Subscribed!

    • @joellevi5979
      @joellevi5979 3 года назад

      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 :)

    • @orlandowesley2390
      @orlandowesley2390 3 года назад

      @Joel Levi Yea, have been watching on InstaFlixxer for since november myself :)

  • @zhehaozhang2567
    @zhehaozhang2567 Год назад

    Thanks, Benito your videos are really helpful!

  • @rajatwadhwa9815
    @rajatwadhwa9815 4 года назад +1

    Bro i really enjoy your lectures. these are really awesome

  • @convolucion1981
    @convolucion1981 4 года назад +1

    Great vídeo, great explanation.

  • @sangeetasharma7726
    @sangeetasharma7726 3 года назад +1

    Hi, is this package app feature comes in student version of matlab?

  • @RoshiniMurugan-i2p
    @RoshiniMurugan-i2p Год назад

    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?

  • @marvetoons1625
    @marvetoons1625 11 месяцев назад

    Wonderful tutorial.
    My question is can this created apps be used outside Matlab like an exe file or an Android app?

  • @teachyourself-stem8971
    @teachyourself-stem8971 4 года назад +1

    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.

  • @robertoaraujojunior5426
    @robertoaraujojunior5426 4 года назад

    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

  • @infootainment
    @infootainment Год назад

    Sir, please make a video on deploying the app on the web so everyone can access it from anywhere. Thanks

  • @leenabadgujar9365
    @leenabadgujar9365 4 года назад

    can we share the app? and if yes then the person with whom we have shared can be able to edit it ?

  • @mohamedameri360
    @mohamedameri360 4 года назад +2

    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.

    • @BenitoSebastian
      @BenitoSebastian  4 года назад +2

      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

  • @rolanossi3275
    @rolanossi3275 3 года назад +1

    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.

    • @rolanossi3275
      @rolanossi3275 3 года назад +1

      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);

  • @llxFuRiiOuSxll
    @llxFuRiiOuSxll 4 года назад +1

    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

  • @theone3746
    @theone3746 5 лет назад +1

    How did you move multiple things at once? When I highlight multiple things at once I still can't move them all.

    • @BenitoSebastian
      @BenitoSebastian  5 лет назад

      Hi,
      You need to group them first then you can move them together.

  • @JT-91
    @JT-91 Год назад

    how does one move that app to web based?

  • @firzazr
    @firzazr 5 лет назад +1

    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

    • @BenitoSebastian
      @BenitoSebastian  5 лет назад

      Hi Firza,
      Do you mean what is the difference between using GUIDE and app designer?

    • @firzazr
      @firzazr 5 лет назад

      @@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.

    • @BenitoSebastian
      @BenitoSebastian  5 лет назад +1

      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!

    • @firzazr
      @firzazr 5 лет назад

      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?

  • @aysebeyzaunal3472
    @aysebeyzaunal3472 3 года назад

    hello, i have a project. When ı press a button a want to open a new windows how can ı do that?