Answered
How to convert image into binary in axes at GUI MATLAB ?
muhammad - see <http://www.mathworks.com/help/images/ref/im2bw.html im2bw> which will cover an RGB image into a binary one (subj...

10 years ago | 0

Answered
How can I store my image file name and out put variable in a table by pressing a push-button of GUI?
Sheli - how are you obtaining the filename and angle? Does the user press a button that allows him or her to choose a file and ...

10 years ago | 0

Answered
cell to double with mismatched dimensions
Jonathan - one way would be to use <http://www.mathworks.com/help/matlab/ref/cellfun.html cellfun> to apply a function to each e...

10 years ago | 0

| accepted

Answered
How to Transfer data from Main gui to another GUI in case , when multiple instances of GUI is used ?
Sundeepan - I strongly suggest that you don't use *eval* to evaluate your expressions. Your id = strcat('hPlot',num2str(l))...

10 years ago | 1

| accepted

Answered
matlab GUI: writing to a field in a different GUI
Daniel - see <https://www.mathworks.com/matlabcentral/answers/146215-pass-data-between-gui-s> which should get you started.

10 years ago | 0

| accepted

Answered
how to reset the axes in this situation of my GUI?
oussama - you seem to have the code for your *Clear* pushbutton callback, but you have commented out and it is in the middle of ...

10 years ago | 0

| accepted

Answered
Passing a listener from GUIDE function to a function outside of GUIDE?
Eric - save *lh* to the *handles* structure as function Toggle_Callback(hObject, eventdata, handles) % your code % c...

10 years ago | 0

Answered
I want to execute a function in a gui Matlab each time intervals
Beatriz - see <http://www.mathworks.com/matlabcentral/answers/178682-collecting-a-variable-every-two-minutes> for details on how...

10 years ago | 0

| accepted

Answered
Tricky GUI stop button problem
Sebastien - you can try using <http://www.mathworks.com/matlabcentral/answers/146215-pass-data-between-gui-s> as a starting poin...

10 years ago | 2

Answered
how to Automate a button click after X-Seconds to update values
Jay - are these variables in your workspace because you are using Simulink? If so, you could create a timer object in the *Open...

10 years ago | 1

| accepted

Answered
how to put the results in a cell
Yasmin - your code starts with the first threshold value and then iterates over each element in *img2* and does the following ...

10 years ago | 0

| accepted

Answered
Read specific frames from a video
Nasser - try using <http://www.mathworks.com/help/matlab/ref/videoreader.read.html read> instead which was introduced in R2010b ...

10 years ago | 1

Answered
Min of each row of a matrix and their indexes
Babak - if you want to find the minimum of each row of *Z* then use *min* as follows >> Z = [27 25 21; 35 38 37; 42 47 49]; ...

10 years ago | 1

Answered
How to save excel files as the curent date? Help
Ellis - it isn't all that clear what the *xlswrite* error might be, but you could consider building your file name with <http://...

10 years ago | 0

Answered
Display 1 message for multiple GUI button press
chlor - yes, there are ways to programmatically prevent a warning message from being generated (I'm assuming that your code gene...

10 years ago | 0

Answered
my neural network training code goes to an infinite loop
Sérgio - looking at your *Amostras* data, the first row (which is your *result* array) is made up of positive and negative ones....

10 years ago | 0

| accepted

Answered
How do I add data to handles (originating from GUI1) in GUI2, send them back to GUI1 and make GUI1 access them?
Evelina - have you tried saving the data from your sub-GUI to the handles structure from the main GUI? For example hMainGui...

10 years ago | 0

Answered
how to get the lower part of the Airfoil ?
oussama - when you call plot(x,y) to plot the upper half of your airfoil, the lower half plot (graphics object) is cleare...

10 years ago | 0

| accepted

Answered
how to plot an airfoil coordination using Matlab GUI ?
oussama - I had trouble launching your GUI because you've named the files as *CST_GUI* yet the GUI (in the code) is named as *CS...

10 years ago | 1

| accepted

Answered
GUI - Batch Image Proessing Help!
Ellis - while I suspect that your question has been answered already, the problem is with the *pushbutton3* callback and the use...

10 years ago | 0

Answered
Problem with string assembly
Judy - since *S_AA* is an array of characters, then S_AA(i) returns the first character only in the ith row. To return a...

10 years ago | 2

Answered
Problem with figure legend in loop for selecting multiple columns
BYUBeetleGirl - looking closely at the colours in your second legend, there appears to be three distinct sets....which match the...

10 years ago | 0

| accepted

Answered
How to upgrade matlab from R2010b to R2016a
Vidushi - see <https://www.mathworks.com/matlabcentral/answers/92188-how-do-i-upgrade-my-matlab-from-one-version-to-another> or ...

10 years ago | 0

Answered
vectors equality test failure - decimals and sign issue on zeros
VMat - see <http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F> for some details on c...

10 years ago | 1

Answered
Customed uipanel in matlab figure.
ehtisham - I suspect that one or more static text controls are used to display the parameter values. For example, there may be ...

10 years ago | 0

| accepted

Answered
Creating a Checkbox depending on another Checkbox [GUI]
mec123 - suppose that you have two checkboxes, *checkbox1* and *checkbox2*, with the latter being enabled only if *checkbox1* is...

10 years ago | 0

Answered
pass the last Element off array to GUI
Jay - since the Simulink model sends the *requried_energy* variable to the workspace, then consider using <http://www.mathworks....

10 years ago | 0

| accepted

Answered
Random values by default? [GUI]
mec123 - you can set default values in the *OpeningFcn* of your GUI. Just do set(handles.checkbox8,'Value',1); to set th...

10 years ago | 0

| accepted

Answered
Update GUIDE GUI when radiobutton is selected
chlor - in the GUI GUIDE editor, right-click on the radio button group to bring up its pop-up menu. Select *View Callbacks -> S...

10 years ago | 1

| accepted

Load more