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
0
votes
1 answer

MATLAB UI interface and coding issue

I'm having this issue in my MATLAB program. I want to perform a set operation on my UI during a coding. In other words I'm pressing a button to launch my code and at the same time I want to change some uicontrols. I tried with pause and wait with no…
Nicholas
  • 1,915
  • 31
  • 55
0
votes
1 answer

Parallel Processing with Matlab GUI's

I have a main form GUI that spawns child GUI's which are all modular and independent from the master that spawned it, taking only input arguments, but no output arguments or data dependency as they perform seperate non related tasks. The current…
fysloc
  • 89
  • 3
  • 11
0
votes
2 answers

Removing 'AllFiles' from file types when using uigetfile

I'm using uigetfile with a custom set of FilterSpecs. Here is the sentence: [FileName,PathName,FilterIndex] = uigetfile({'*.wav';'*.mp3'},'Open Audio File'); As you can see my FilterSpec is {'*.wav';'*.mp3'} and this works perfectly fine. My…
Daniel Conde Marin
  • 7,588
  • 4
  • 35
  • 44
0
votes
1 answer

read from excel sheet in matlab

I need help about Matlab and Excel sheet work. Can any body tell how to only read the location of cell in excel sheet by using Matlab that is if I have anything written in any cell let say at " B3 ". and I want to use this B3 in my code.so how am I…
0
votes
2 answers

calculate min max etc. using an array of numbers

Hi iI have a small GUI that contains 1 'Push Button' and 3 'Edit Texts' and a few static text labels to display the results. What I want to do is to be able to calculate from a series of numbers their: sum, average, min, max, Standard Deviation and…
Tacit
  • 890
  • 6
  • 17
  • 42
0
votes
1 answer

matlab gui to capture pictures through webcam. i dont know how to save images with different names

i am using matlab gui to capture pictures through webcam. i dont know how to save images with different names.. my code is function pbPreview_Callback(hObject, eventdata, handles) vid = videoinput('winvideo', 1, 'YUY2_176x144'); % only capture one…
user2024837
  • 1
  • 1
  • 2
0
votes
2 answers

MATLAB GUI callback not setting values for another callback?

I want one button press to set the value and another button press to output the value of a variable. It seems the value is not set by the first button press using the following code. Why is that? % --- Executes on button press in…
jdl
  • 6,151
  • 19
  • 83
  • 132
0
votes
1 answer

Too many input arguments to uicontrol callback

I am trying to write a scroll bar that changes the x-range of many subplots at the same time. kids = get(gcf,'Children'); …
mac389
  • 3,004
  • 5
  • 38
  • 62
0
votes
1 answer

MATLAB GUI calculator error

I'm Developing a calculator that converts back and forth from a Julian time to a standard IRIG time using MATLAB's GUIDE. When started, the calculator works fine going one way, or starting out going the other way, but somehow something gets deleted…
Fobos13
  • 113
  • 1
  • 1
  • 11
0
votes
2 answers

the push button in matlab exe file doesn't work

I developed a Matlab GUI program which it has four editbox & one pushbutton; my application works properly when I run it with Matlab software, but after converting it to exe file (standalone), the pushbutton doesn't work, means it doesn't show the…
0
votes
1 answer

How to create axes in matlab GUIDE

I want to implement the following code using matlab GUIDE: axes(handles.axes1); imshow(image1); axes(handles.axes2); imshow(image2); As I am very new to GUIDE so I am having no idea how to do this. Any guidance.
Shayan Ali
  • 65
  • 2
  • 16
0
votes
1 answer

imwrite current image on axes in MATLAB GUIDE

I have a problem in my GUI. In my opening function I defined an img_new variable to be an image I have stored. My GUI has two axes, one displays the original image and the other one the filtered one. I have 4 filters in a panel with the 4…
SamuelNLP
  • 4,038
  • 9
  • 59
  • 102
0
votes
1 answer

refreshing guide with radiobutton and slider

I have a question that include radiobuttons and slider. My aim is this: when the value of the slider is changed, the code in the radiobutton selected in the moment must be rerun to refresh the effect. te max, min and step of the slider is defined in…
SamuelNLP
  • 4,038
  • 9
  • 59
  • 102
0
votes
2 answers

ButtonDown event does not work sometimes matlab

I have two textboxes and a button in matlab. Designed the form using GUIDE. I used the following code to copy value from one textbox to another. The code works sometimes and not always. I am not able to find the scenario in which it works and what…
Santron Manibharathi
  • 628
  • 5
  • 12
  • 26
0
votes
1 answer

Populating a popup menu with directory files

I'm trying to populate a popup menu from a GUI I made up with GUIDE. I'm doing as follows: TestFiles = dir([pwd '/test/*.txt']); TestList = []; for i = 1:length(TestFiles) filename = TestFiles(i).name; TestList = [TestList…
Heartcroft
  • 1,672
  • 2
  • 19
  • 31