Building MATLAB Apps with App Designer

Sdílet
Vložit
  • čas přidán 24. 07. 2024
  • Free MATLAB Trial: goo.gl/yXuXnS
    Request a Quote: goo.gl/wNKDSg
    Contact Us: goo.gl/RjJAkE
    Learn more about MATLAB: goo.gl/8QV7ZZ
    Learn more about Simulink: goo.gl/nqnbLe
    App Designer is a rich development environment for building apps. Sebastian Castro and Connell D’Souza from the MATLAB and Simulink Robotics Arena use App Designer to convert some MATLAB® code into an interactive tool.
    Many MATLAB products have apps included and you can get additional apps from MATLAB File Exchange [goo.gl/5WvAMF]. You can learn more about MATLAB apps for different applications by visiting the MATLAB Apps discovery page [goo.gl/ihm1ed].
    Tools like App Designer [goo.gl/BovgqB] and GUIDE [goo.gl/sX8MLv] provide you with an environment to build custom applications that can contain standard components such as buttons, check boxes, and panels. These apps can also be created programmatically, which gives you more flexibility in functionality. These custom tools can then be packaged as single-file solutions and shared with MATLAB users or as standalone applications using MATLAB Compiler™ [goo.gl/gJQLZ3].
  • Věda a technologie

Komentáře • 48

  • @javierloaiza8375
    @javierloaiza8375 Před 6 lety +6

    Thanks!. This was a great video. You are very good teachers.

  • @angelgabrielortiz-rodrigue2937

    What other hardware can I connect to the computer and app designer is able to interact with them? I want to use it to make a UI for a WSI microscope. I need to be able to connect the app with the hardware from the microscope, which are a few motors and a camera. Can it be done? (theoretically)

  • @daleshell1363
    @daleshell1363 Před 4 lety

    Is there a way to get a list of the code you entered so I can enter as you do when I re-run the youtube video?

  • @ercumentkalkan6253
    @ercumentkalkan6253 Před 5 lety

    I wonder how i can manage to make two or more applications share data and variables in MATLAB R2017a. Does anybody have an idea about it?

  • @ahmershahid4818
    @ahmershahid4818 Před 5 lety

    How can I use the webcam on an axis in app designer?

  • @rayanajakasurya7957
    @rayanajakasurya7957 Před 5 lety

    how to fix this?
    Error using image
    While setting the 'Parent' property of 'Image':
    Functionality not supported with UIAxes. For more information, see Graphics Support in App Designer.
    Error in images.internal.basicImageDisplay (line 24)
    hh = image(cdata, ...
    Error in imshow (line 293)
    hh = images.internal.basicImageDisplay(fig_handle,ax_handle,...

  • @shiprasuman
    @shiprasuman Před 4 lety

    I am using R2019b and unable to see component properties window which usually appears at the bottom right corner of the video. How can I set it to place? Please help. Thank you.

  • @HabibTitas
    @HabibTitas Před 3 lety

    Hello, how to run a .m file using push button in app designer? Any hints?

  • @davidpsp89
    @davidpsp89 Před 3 lety

    how can I display the Command Windows within App Designer?
    I have a code that I am programming, I need it to be executable on another pc, for that I can use the compilation app or the disegner app. but I need everything that comes out in the windows command to appear in a window or be printed when executing the code, as if it were the matlab workspace

  • @nikosnikolaou6454
    @nikosnikolaou6454 Před 4 lety

    This is beyond awesome ! Thanks for the vid :)

  • @nikhilpatil42
    @nikhilpatil42 Před 3 lety

    Is any tutorial available to create a presentation from matlab with a default template ppt?

  • @EmreYavuzalp
    @EmreYavuzalp Před 4 lety

    Can I do something like this: app.EditField.Value= classify(testneuralnet,A)
    A is the input the user puts in. It's a basic letter classification program I made but can't make the gui. I want to put the output of the neural network. But cannot do it. Can anyone help me?

  • @AbhishekKumar-mq1tt
    @AbhishekKumar-mq1tt Před 6 lety

    Thank u for this awesome video

  • @gcepanel
    @gcepanel Před 3 lety +1

    Ideal, it helped me a lot. am trying to build a stand alone wed app using matlab
    that uses optimization

  • @pro-finx6083
    @pro-finx6083 Před měsícem

    great video. Really helpful

  • @anisaaftab8151
    @anisaaftab8151 Před 3 lety

    How to change column header font size of a table in MATLAB App designer? Please help. Thank you

  • @GlamNoir
    @GlamNoir Před 5 lety

    great video, Thank you.

  • @hungdoan9148
    @hungdoan9148 Před 5 lety

    Great video guys!

  • @johnthedy7755
    @johnthedy7755 Před 4 lety

    Great! It help me a lot. Thanks

  • @utkarsh22smart
    @utkarsh22smart Před 4 lety +1

    Make another video please, about inheritance in app design, Thanks

  • @nfcradio4622
    @nfcradio4622 Před 3 měsíci

    how to add my class file object in app designer?

  • @gcepanel
    @gcepanel Před 3 lety

    This is the best video ever! I will share with all my frieds

  • @angelgabrielortiz-rodrigue2937

    App designer gives me this error:
    Undefined function 'videoinput' for input arguments of type 'char'.
    Error in app1 (line 87)
    runStartupFcn(app, @startupFcn)

  • @kayaclicks
    @kayaclicks Před 5 lety +2

    Interesting !!! Thanks
    Already started to play with APP Designer.
    Can you please help me with "Howe to share variable values between two callbacks" in App Designer? :)

    • @utkarsh22smart
      @utkarsh22smart Před 4 lety

      make sure the variable you wanna use is a property of the app. just declare that variable as a property.

  • @tanlun4317
    @tanlun4317 Před 6 lety

    Hi, is there a way to put the webcam preview into the gui interface?

    • @roboticseabass
      @roboticseabass Před 6 lety

      Not with the "single-line" preview command, but you can definitely read in the images and display them on axes inside your app.
      www.mathworks.com/matlabcentral/answers/304563-imshow-in-appdesigner

    • @tanlun4317
      @tanlun4317 Před 6 lety +1

      Hey! Thanks. I got it working about a week ago.

      cam= ipcam('192.168.43.128:8080/video')
      fig = app.UIAxes;
      frame = snapshot(cam);
      im = image(fig, zeros(size(frame), 'uint8'));
      axis(fig, 'image');
      preview(cam, im)
      setappdata(fig, 'cam', cam);

  • @shilpachaman6409
    @shilpachaman6409 Před 4 lety

    How to do package app in MATLAB ONLINE

  • @mdiqbal7168
    @mdiqbal7168 Před 3 lety

    Why not data source name not come in matlab query builder in matlab 2007b

  • @ArunGupta-wn9sc
    @ArunGupta-wn9sc Před 4 lety

    Great information to prepare APP.

  • @User_User_266o
    @User_User_266o Před 6 lety +1

    Is it possible to run this app on mobile¿

  • @keirthkilat4879
    @keirthkilat4879 Před 6 lety

    hello i need some help on how to edit cells using the app designer in matlab

    • @roboticseabass
      @roboticseabass Před 6 lety

      Feel free to ask the community on MATLAB Answers!
      www.mathworks.com/matlabcentral/answers/

  • @mdiqbal7168
    @mdiqbal7168 Před 3 lety

    How to make database app in matlab 2007b

  • @user-kl8vj2qy9w
    @user-kl8vj2qy9w Před 3 lety

    Lol I read "building MATLAB using appdesigner" multiple times scrolling into this video

  • @TechnicallyExplained
    @TechnicallyExplained Před 3 lety

    nice sir

  • @sssleyer
    @sssleyer Před 5 lety +1

    28 min video that could be done in 5 min, 9 min into the video nothing happens... cammon

    • @roboticseabass
      @roboticseabass Před 5 lety

      Indeed, we're working on cutting down our video lengths to be more "demo", less "tutorial"!

    • @HeyEveryoneHi
      @HeyEveryoneHi Před 3 lety

      Yes but it is a very educational video

  • @aalizwel2061
    @aalizwel2061 Před 6 lety

    Yoo

  • @camilohernandezruiz7815

    CARECT CARECT

  • @morganivey4903
    @morganivey4903 Před 4 lety

    Who is Sebastian? 10:58.

  • @superrogin
    @superrogin Před 5 lety

    Never use app designer. It's just a pretty shit.