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
5
votes
2 answers

GUI figure not opening on dual monitor but other figures are ok

I am using matlab R2012a (7.14.0.737) 64-bit on a windows 7 PC. I have 2 monitors. I want to be able to open a matlab GUI figure up on the 2nd monitor (on the left). at the command line opening figures there works fine. h = figure( ... ,…
4
votes
1 answer

Making a row uneditable in Matlab GUI

How can I make a row non-editable, something similar to 'ColumnEditable'. I searched for a solution and only one came up....it's to do with Java. Any other solutions? Here is what I'm trying to do, and I'm already planning to change it! I have check…
abdulhaq-e
  • 626
  • 9
  • 19
4
votes
4 answers

Edit box clearing on mouse click in MATLAB GUI

I want to have an "edit" box in a MATLAB GUI that says "TYPE SEARCH HERE". When the user clicks inside the box I want the "TYPE SEARCH HERE" to disappear and give the user an empty edit box to start typing in... Any ideas?
dewalla
  • 1,317
  • 8
  • 18
  • 42
4
votes
1 answer

MATLAB ResizeFcn callback fails

I am editing a GUI written in MATLAB and have a line in the OpeningFcn that sets the callback for resizing the figure. set(hObject, 'UserData', handles.ParentFig, 'ResizeFcn',@cbFigResize, 'CloseRequestFcn', @Cancel); The callback is pasted below…
Paul Linden
  • 421
  • 4
  • 8
4
votes
1 answer

How to add components in to an existing GUI created by guide?

I just created a GUI using guide in MATLAB for a small project I'm working on. I have amongst other things two text fields for from and to dates. Now I'd like to get rid of them and use a Java date select tool. Of course this is not possible using…
Sindri Guðmundsson
  • 1,253
  • 10
  • 24
4
votes
1 answer

What is the parallel function in 2017a MATLAB?

(D:\Users\Dacy\Desktop\parallel.png) When using the commandmatlabpool open local 4, then it remind me Undefined function or variable 'matlabpool'. Is there a change for parallel function?
4
votes
1 answer

How to create custom UI for a MATLAB application?

MATLAB possesses all features I need in my application, except for one - a 21st century look to the applications it builds. The old UI controls with the skin from the 90s just don't cut it anymore. Are there ways to customize the GUI of the compiled…
Micard
  • 379
  • 2
  • 15
4
votes
1 answer

How to display different infos when hovering over an image with mouse in matlab guide?

I have an image that consists of several segments with different labels. The labels are color coded. Does someone know how I can tell matlab to display the current label in a text box when hovering over it? I would basically need to display…
mcExchange
  • 6,154
  • 12
  • 57
  • 103
4
votes
1 answer

MATLAB: Show a progress bar when saving file?

I have a MATLAB GUI (developed in GUIDE) where I give the user the option to save certain data-structure variables (as a .mat file). However, this is a large .mat file and it can take up to a minute to save this file. Without any sort of progress…
DeeWBee
  • 695
  • 4
  • 13
  • 38
4
votes
0 answers

How to catch TargetInvocationException raised from .Net BackgroundWorker in Matlab?

I am writing a small application in Matlab using GUIDE. This application calls on a .Net library. The library connects to a serial device. Using a BackgroundWorker, the library polls the port for new data, and raises an IncomingData event whenever a…
RubberDuck
  • 11,933
  • 4
  • 50
  • 95
4
votes
2 answers

Is there most efficient way to code program for Avg Clustering Coeff

Calculation of Average clustering coefficient of a graph I am getting correct result but it takes huge time when the graph dimension increases need some alternative way so that it takes less time to execute. Is there any way to simplify the code?? …
RRK
  • 43
  • 1
  • 5
4
votes
1 answer

MATLAB GUI drawnow renderes button 'pushed down' instead of 'disabled'

I am running the drawnow statement from a callback function within a MATLAB GUI to update the state of a button. At the beginning of the callback (which has high runtime) I alter the properties of the button and force an update with drawnow. While…
user2457516
4
votes
1 answer

How to call a callback function in a MATLAB gui from another gui?

I have two GUIs, made with GUIDE. I'm trying to call a pushbutton callback function in GUI1 from GUI2. Here is the code in GUI2 set(0,'showHiddenHandles','on'); hfig = gcf; m_handles = guidata(hfig); % handles in GUI1 set(m_handles.show_status ,…
vmontazeri
  • 393
  • 2
  • 20
4
votes
0 answers

hand gesture recognition in matlab

I am doing gesture recognition in MATLAB. I need help regarding finger detection. I have detected the hand using skin color detection but don't know how to find the number of fingers. I have used bwboundary for boundaries detection in the image but…
user3112838
  • 103
  • 1
  • 2
  • 5
4
votes
1 answer

Matlab gui WindowButtonMotionFcn crashes when called too often?

I've set WindowButtonMotionFcn to my callback which plots three plots, with the data depending on mouse position. However this seems to be too much for MATLAB to handle, because after moving my mouse around a bit, the GUI stops responding. I use…
Leo
  • 1,757
  • 3
  • 20
  • 44
1 2
3
90 91