Tagged Questions
1
vote
1answer
11 views
Save/Print a multi-line editbox in Matlab GUIDE
I have a multi-line editbox with some messages like this
[0] Message 1
[0] Message 2
[0] Message 3
[0] Message 4
How can I save this in a *.txt file?
If I want to print it, I have to print the ...
-1
votes
0answers
27 views
virtual reality connect to gui in matlab
I'm working on a project that includes Virtual Reality and gui figures, and I want to connect them together. In the first gui you must enter data and in an axes we need to show the virtual reality it ...
0
votes
0answers
26 views
How to use Java in a Matlab GUIDE?
I'm trying to do a multi-line editbox uicontrol like explained here but I can't get this working in my GUIDE.
function listbox_Callback(hObject, eventdata, handles)
% hObject handle to ...
0
votes
2answers
33 views
Insert a new line in listbox on Matlab GUIDE
I'm building a GUI using GUIDE and I have a listbox where I want to receive several messages after I click in send_button but every time I click on the button the message shows in the first line.
...
1
vote
1answer
34 views
GUIDE in MATLAB
I am trying to build a program in MATLAB and I am using edit boxes but I want the value that the user will enter to be used later on from another function. So should I use the global variables or is ...
0
votes
2answers
33 views
How to create MATLAB static text with editable font style
MATLAB® provides a static text uicontrol (created by using the uicontrol with style text: uicontrol('Style','text','Label','static text'…), which does not allows you to use neither html nor tex ...
2
votes
1answer
56 views
Changing toolbar icons in a Matlab GUI GUIDE
I'm trying to put an icon in a pushbutton and I'm working with GUI GUIDE.
In iconeditor I try to import a file from Matlab icons path but it doesn't work.
Then I tried to program the button like ...
0
votes
0answers
19 views
Eliminating the visibility of axes's dimensions in GUIDE
This is a GUI template I wrote on GUIDE.
I'd like to eliminate the visibility of the axes's dimensions. I think I set this as a preferences' property months ago, but now I can't find it.
0
votes
3answers
47 views
updating data within same GUI in MATLAB
I've created one image editor window in MATLAB, which includes various operations including brightness, contrast, crop, rotate etc.., In this GUI, each operations has its own function call backs.
My ...
0
votes
0answers
20 views
str2num dialoge box matlab in GUI
I'm trying to right this peice of code where the user would input values for a and for b but b has to be bigger then a. So the code would test it and in case of an error reply with a dialogue box ...
1
vote
1answer
24 views
When I open a .fig from another figure in matlab gui doesn't work
I'm creating a gui with some gui , when I open a .fig from a figure with "open menu.fig" it opens good , but when I use a button to change some of the figure components properties with ...
0
votes
1answer
22 views
Matlab - Close GUI with a dialog
I'm doing a GUI with GUIDE and want to close the figure with a dialog.
I have a button with this
selection = questdlg('Close This Figure?',...
'Close Request Function',...
...
0
votes
0answers
16 views
Cannot edit MATLAB GUI due to recursion loading
I have been editing a MATLAB gui in guide, no problems until I try to run at which point it crashes.
I then try to edit the GUI but i get the same problem trying to open the fig and MATLAB crashes. ...
0
votes
1answer
42 views
Load text file on Matlab with a GUI
I have a question about how can I write a code to create a GUI in Matlab. I've created the graphic interface with a simple button. I want that, pressing that button, load a text file and after a loop, ...
-1
votes
0answers
16 views
Matlab GUI using classes
I want to build a GUI using MATLAB for a project. This GUI will have several inputs and outputs and some graphs. I want to use MATLAB classes for this project. The input parameters will be in one ...