2

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.

David95
  • 23
  • 4

1 Answers1

1
f = uifigure;
im = uiimage(f);
im.ImageSource = 'imagename.png';
CarSmyth
  • 48
  • 6
  • 1
    Hi CarSmyth, welcome to stackoverflow. Could you add a little more context about why this is the correct way to do it, or even links to documentation? Thanks! – Erty Seidohl Sep 06 '19 at 03:18