.m Script into GUI App Help

30 views (last 30 days)
Ann Nguyen
Ann Nguyen on 19 Jun 2020
Commented: Ranjan Sonalkar on 23 Jun 2020
Hi I'm quite new to MATLAB. I'll try my best to explain what I have.
I'm using MATLAB R2020a.
I have an .m file and I want to use this .m in the GUI App. This .m file runs as a short game with user inputs.
I want to make: GUI App with an Image and Start Game button. When the Start Game button is pushed I want it to run my .m file with all user inputs.
How do I make that happen? Plase help me.
  4 Comments
Ann Nguyen
Ann Nguyen on 19 Jun 2020
Geoff,
My .m file is a full on script.
Ranjan Sonalkar
Ranjan Sonalkar on 23 Jun 2020
Ann
Geoff's answer is the way to do it. Just insert the call to your function in the Game.m file in the Callback script for the Start Game button. If your game needs variables that you set within the GUI, you will need to send them as either input parameters to the Game.m function or as global variable that you declare in the GUI and the Game.m function.

Sign in to comment.

Answers (1)

Devineni Aslesha
Devineni Aslesha on 23 Jun 2020
Hi Ann
  1. Type guide in MATLAB command window. Open Blank GUI(default).
  2. Drag and drop the axes and push button in GUI figure window. Save the file with .fig extension.
  3. A .m file will be opened in MATLAB with the saved filename.
  4. Add imshow('image.jpg') to gameGUI1_OpeningFcn (Here, gameGUI1 is the filename). Here, the image file should be in the same path where the gameGUI1 file exists.
  5. Add the .m script which has to be run upon clicking the Start button to pushbutton1_Callback function.
To understand more about GUI, refer the following link

Categories

Find more on Just for fun in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!