Questions tagged [matlab-guide]

This tag is NOT for "guidance" on MATLAB questions. GUIDE, is a graphical user interfaces (GUI) design environment in MATLAB. This tag relates to the development of MATLAB applications with a GUI using the interactive GUIDE layout editor.

GUIDE, is a graphical user interfaces (GUI) design environment in MATLAB. This tag relates to the development of MATLAB applications with a GUI using the interactive GUIDE layout editor, as opposed to the AppDesigner tool or creating GUIs programmatically.

MATLAB is a high-level language and programming environment developed by MathWorks.

Additional sources of technical information on these topics include:

1363 questions
3
votes
2 answers

Set Parent of Map Axes in Matlab GUI

I am programming a basic GUI in MATLAB that utilizes the mapping toolbox. The GUI will display a grayscale image and then plot discrete points over the data, all of this over the necessary map projection. It is important that I plot onto map axes…
lstyls
  • 173
  • 2
  • 13
3
votes
2 answers

Is it possible to execute compiled code both within and out of MATLAB environment?

Let me explain what I am trying to do. I have an application coded in Matlab and I would like to provide it to both Matlab users and non-Matlab users. So you would say : Just compiled it and deploy an executable. Fine. But deployed application are…
3
votes
2 answers

Matlab: getting GUI handle value from a callback function when calling by another function

I am new to GUI programming for MATLAB, so my question relates to that. Let's say that I create a GUI with GUIDE. In the creation function MyGUI_OpeningFcn(hObject, eventdata, handles, varargin) I call another function,…
user1340654
  • 395
  • 2
  • 5
  • 16
2
votes
2 answers

I have a few GUI's in MATLAB and I need to view them in different tabs

I have 3 GUI files created using GUIDE. I need to have a tab Panel where I can view all of them in different tabs.
Leena Suresh
  • 43
  • 1
  • 5
2
votes
1 answer

Matlab ResizeFcn callback

I am worried about the look and feel of my GUI designed with Matlab. In concrete, I do not like how the figure window resizing is achieved. I have an uitabgroup (tabpanel) inside which there are three panels with border etchedin. Each time the…
julianfperez
  • 1,726
  • 5
  • 38
  • 69
2
votes
1 answer

Want to move a slider and all the others update in Matlab?

I have GUI in Matlab that I have made using the Programmatic approach. It has 6 sliders and I want to be able to move one of them and have the others update as if i clicked them again but to stay in the same place. I am guessing I will need to use…
Ben Fossen
  • 997
  • 6
  • 22
  • 48
2
votes
2 answers

Showing results in MATLAB GUI

I'm using MATLAB GUIDE to create a simple GUI. I'd like to know which uicontrol I should use to show some results: editable text or static text. In addition, I don't want the new results to replace the old ones.
Sam
2
votes
1 answer

Matlab: Superimposing a plot on an image in GUIDE

Whilst using Matlab's GUIDE, I wish to plot a line onto an image. I managed to achieve this when I was using only one axis inside the GUI. However upon adding another axis the plot no longer overlays the image. Initially the plot began to plot on…
Matt Le Fleur
  • 2,708
  • 29
  • 40
2
votes
2 answers

How to pass variable to a function created through the guide

I have developed a GUI in MATLAB GUIDE. What is the best way to make data from an external function or class available to functions created by GUIDE?
Madhavi
2
votes
2 answers

Limiting string length in a Edit Box on Matlab user interfaces

I inserted an Edit box in a Matlab user interface and I would like to limit the number of characters that an user can type. There is no obvious property on the Edit box (such as "max characters"). I tried to use the callback function, verifying if…
Felipe Ferri
  • 3,488
  • 2
  • 33
  • 48
2
votes
1 answer

How to use getframe() with a MATLAB GUIDE (GUI) object to make a movie?

I would like to use getframe to capture a screenshot of my nice GUI object, which I created using GUIDE. I can't just use OS PrintScreen functionality because I need to make a movie of something that happens in the GUI window, i.e. capture thousands…
Matt Mizumi
  • 1,193
  • 1
  • 11
  • 27
2
votes
0 answers

Matlab Engine API OpenSingleUseFunction() and OpenEngineFunction() timeouts in 2 minutes

When I launch the Matlab tool in Windows machine, the tool launches but it is in "Initializing" phase for 4-5 minutes. The tool will not respond to any user commands. The issue could be due to usage of remote license. The usage of remote license or…
user13519327
2
votes
1 answer

Matlab-GUI warning when using parfeval(): "Unable to save App Designer app object."

I am trying to call parallel functions within my Matlab-GUI by pushing a startbutton. For the beginning I tried to call one single function ("ReadTwinCAT") but I'm always getting the following error-message: "Warning: Unable to save App Designer…
2
votes
1 answer

in uitable change the font colour and the background colour

I have a uitable that is displaying some data. When a value is greater than 1 I want the number to be in a red bold font. This code gives me the correct output: data(indx_red(:, n), n) = strcat(... '
mHelpMe
  • 6,336
  • 24
  • 75
  • 150
2
votes
1 answer

zero padding before and after audio signal in matlab

I have an audio signal of length 82778 with Fs 44100. after applying a customise function on chunks of .25 second. I want to add zero paddings of .25*.5*Fs before and after the output of the loop, so I can get the same length of the original…
Ahmed
  • 23
  • 3