Search code examples
imagematlabpictureboxmatlab-app-designer

How to add picturebox to Matlab App Designer?


I want to add picture in my Matlab UI application made with App Designer. I there any way how to add picture box or something? Thank you.

edit: I know only about adding picture to button, but cannot find any other way.


Solution

  • f = uifigure;
    im = uiimage(f);
    im.ImageSource = 'imagename.png';