Answered
Turning Handles Visibility Off In Nested Function
Hi Zachary - if I understand your problem correctly, once the user is on the info page that is displaying the dropdown list of s...

10 years ago | 1

| accepted

Answered
How do you save menu variables actually chosen instead of the choice number?
Coral - since *TempChoice* is the id of the selected menu button, then couldn't you just use that to access *Choice*? This assu...

10 years ago | 0

Answered
Loops error index dimension?
Maria - if I substitute my own function for your *primeter*, then I observe the same error message as you Index exceeds matr...

10 years ago | 0

Answered
why do i get error when i try to use rgb2gray function in gui?
sagarika - first, do not name local variables as *image* as this conflicts with the built-in MATLAB function with the same name ...

10 years ago | 1

| accepted

Answered
I am struggling on using dec2bin. I am trying to convert a users input (words) to binary. What should I do differently?
tacos - according to <http://www.mathworks.com/help/matlab/ref/dec2bin.html dec2bin> the input is a non-negative integer. In yo...

10 years ago | 0

Answered
How can I update a cell value in a GUIDE table by using a cell with different options from a choice list menu inside the same table?
Alfonso - try using the *CellEditCallback* for your uitable so that you can respond to the changes in the rock type. In GUIDE, s...

10 years ago | 1

| accepted

Answered
I want to save, publish GUI results in PPT.
Sandy - see Stefan Slonevskiy's submission to the MATLAB File Exchange at <http://www.mathworks.com/matlabcentral/fileexchange/...

10 years ago | 0

Answered
Display Graph using checkbox
Sandy - where is your data being drawn to? Does your GUI have an axes that you are plotting the data to or are you creating a n...

10 years ago | 0

Answered
Logical Calculation Error in GUI plotting
Gary - the problem could be that you have a timer firing every 0.01 seconds (or close to that because this isn't guaranteed espe...

10 years ago | 0

| accepted

Answered
operation on GUIDE graphic.
If you want the user to interact with the drawn sphere you may want to consider using the *WindowButtonDownFcn* (see <http://www...

10 years ago | 0

Answered
GUI Plot using Timer Object and For Loops
Gary - note how you update the *line* object for the *signal* as set(handles.signal,'xdata',t,'ydata',y); where *t* and *...

10 years ago | 0

| accepted

Answered
If after snapsnot, keeps us take 2 start and end frames to axes2 (original image) and axes3 (final image) to perform data so Uitable 1 (from the original image data) 2 (final image). That is how like the image below?
Marquel - suppose you have a cell array of frames or images. If you wish to put the first frame in *axes2* and the last frame i...

10 years ago | 1

| accepted

Answered
GUI - change 'edit' or 'popup' style by number of mouse clicks
James - I couldn't get the popup menu mouse down callback to respond to single or double clicks (this may be intentional with th...

10 years ago | 0

| accepted

Answered
How to do a "drag'n'drop" (from a file on my computer to a GUI) ?
Eugy - I don't think that there is a way to drag and drop a file from your workstation onto a open MATLAB GUI. (Though this wou...

10 years ago | 2

| accepted

Answered
GA mutation rate, population and cross over.
Ferry - a Genetic Algorithm (GA) initializes a population of potential solutions to your optimization problem. On every iterati...

10 years ago | 2

Answered
Substruct array disappear when a struc object is assigned
Luca - the substructure (for the second element) doesn't disappear as it was never there to begin with. Since you are initializi...

10 years ago | 0

| accepted

Answered
Developing an Application that contains video and a timeline
Hari - one way to achieve what you want is to place fast forward and rewind buttons within your GUI which, when pressed, would p...

10 years ago | 1

Answered
How I can draw radius of circle in polar coord sys?
Mahmoud - since you have the angle *theta* and the radius *r* perhaps you can do something like x = [ 0 r*cos(theta) ]; y...

10 years ago | 0

Answered
How to creat a corresponding callback figure when I click one value point of curves on the other figure ?
IP - I would use GUIDE to create your GUI with two axes - one for the time domain signal and the other for the power of differen...

10 years ago | 0

Answered
Define one axe for many images
Ali - if you want to ignore the images which are not relevant (does this mean that *cosTheta <= 0.5*?) then use a different loca...

10 years ago | 0

| accepted

Answered
I'm getting a matlab index error and I can't figure it out.
William - look at the description for the *nounsverbs* function % TR = HMM transition probabilities % E = HMM emissio...

10 years ago | 0

Answered
Access to variables of function in which calling function is nested
harleykitten - if you want your *confun* function to be able to access the local variables defined in *measureAlg1FUN*, then you...

10 years ago | 1

| accepted

Answered
Clear sound for only one playing sound
Kiran - it isn't clear which functions you are using to play the frequency or the metronome, but if you use the <http://www.math...

10 years ago | 0

Answered
Issue with GUI.
Justin - I think what you can do is create another timer to periodically update the status bar, rather than relying a *while* lo...

10 years ago | 0

| accepted

Answered
How to go to next loop in timer?
Justin - yes, it is possible to force an update and reset the timer when the user presses any button. You just need to stop the...

10 years ago | 0

| accepted

Answered
How Can I use GUI with m-files
umit - use GUIDE to create your GUI (see <http://www.mathworks.com/videos/creating-a-gui-with-guide-68979.html reading a GUI wit...

10 years ago | 0

Answered
insert variable value in mysql using Matlab
rio - I don't have the *Database Toolbox* so I can't tell you for sure what is wrong, but I think that your SQL statement is inc...

10 years ago | 0

| accepted

Answered
View Images in many Axes using GUI
ahmed - what are you trying to display in each axes? Please map a variable to each axis. For example, if you wish to *Imaged1*...

10 years ago | 0

Answered
Reading in large binary file with multiple data types (uint8, double, etc.)
Adam - you may be able to use <http://www.mathworks.com/help/matlab/ref/memmapfile.html memmapfile> to read the data from your f...

10 years ago | 0

Answered
How do I save the option I selected on the GUI2(controlpanel) when I callback GUI1(Home)? and if Click back GUI2 the options I selected will still remain.
Denyelle - if you wish to save the state of the GUI so that when you launch it again, the previous state is shown, then you will...

10 years ago | 0

Load more