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 GUI, radio buttons, plotting

I have two radio buttons radiobutton1,radiobutton2 (not in a group) in GUI, each of them plot on the axes1a specific function. If I select radiobutton1 and radiobutton2 the two functions will be plotted on the axes1. If I unselect radiobutton1 there…
newzad
  • 706
  • 1
  • 14
  • 29
0
votes
1 answer

insert array using graphical interface in matlab

I want to insert an array using a graphical interface, but I don't understand why I get these errors: Error using waitfor Undefined function or variable 'A'. Error using waitfor Error while evaluating uicontrol Callback THE CODE: function…
alinush2693
  • 37
  • 1
  • 8
0
votes
1 answer

how to fix the agreement of matrix dimension

I'm a beginner to MATLAB. I created a code that reads a dataset files with type of JPG (same file type) but with different sizes of each file. What I did I read 10 files randomly and put the contents of those files into a matrix (with type of cell…
0
votes
3 answers

Retaining a Plot on a Image drawn using impoint function

I have a number of images to be marked with certain fixed number of points. (object tracking) I am using impoint to make the points on the image and then plot to connect them to each other in a logical way. So far so good. Next, I hit next (on my…
Tomar
  • 174
  • 1
  • 12
0
votes
1 answer

tic toc command in MATLAB GUI

I'm using tic toc commands to know about the computation speed, however if i use this command it gives output in command window. I need to minimize all GUI'S to check time taken by my code. function Texture_Callback(hObject, eventdata, handles) %…
Chethan
  • 213
  • 3
  • 7
  • 19
0
votes
1 answer

How to disable a button on the uigetpref dialogue in MATLAB?

I am developing a tool for image processing on MATLAB using GUIDE. I have a small snag to correct in it. The question is: * The user is asked to select one of the two images on the tool (in different axis) and then the handle of this image is…
Tomar
  • 174
  • 1
  • 12
0
votes
0 answers

Index exceeds matrix dimensions - MATLAB GUI

In my GUI shown below http://s1273.photobucket.com/user/Chethan_tv/media/CBIR_zpsb48bce14.jpg.html open push button is used to view image displayed on respective axes. axes display an image, open buttons should display the corresponding image in…
Chethan
  • 213
  • 3
  • 7
  • 19
0
votes
1 answer

MATLAB GUI: Showing Value of Variable in Figure Tab

I'm working with MATLAB GUI, and I'm stuck to show the table/result of the script. Well, I have this code: [g,c] = kmeans(cobat,3,'dist','SqEuclidean'); %cobat is the file of mine y = [cobat, g] If I run y=[cobat,g] in command window, it will…
Alvi Syahrin
  • 373
  • 3
  • 7
  • 16
0
votes
2 answers

Reading Text File As Numbers (Table)

I'm working with MATLAB GUI. So, I want users to browse their own table from their computer. When they have browsed, the full path will be written on the static text, and the table (that they browse) will be appeared. The problem is, the file; it…
Alvi Syahrin
  • 373
  • 3
  • 7
  • 16
0
votes
1 answer

Viewing image displayed on axes

(http://s1273.photobucket.com/user/Chethan_tv/media/CBIR_zpsb48bce14.jpg.html) Above image is my final output, open push button is used to view image displayed on respective axes. I've used following code for displaying function…
Chethan
  • 213
  • 3
  • 7
  • 19
0
votes
1 answer

Create a "counter" on matlab from 0:limit-1. The length of counter is not determined in the program

Q- Create a "counter" from 0:limit-1 (for example if you choose 3 it will display 0,1,2). The length of counter is not determined in the program and it should be determined when it is being run and the inputs can differ from each other this is the…
Neha Irfan
  • 1
  • 1
  • 4
0
votes
3 answers

How can I refresh input data and update plot in MATLAB GUI?

I am working with Matlab GUI. My problem is the plots are not updated when I change the input data. My code is long but here is the plotting function I am using: axes(handles.Diagram1) hold all for i=1:6:numel(t) plot(rn,E(i,:)/1000000) …
user2369001
  • 11
  • 1
  • 1
0
votes
0 answers

how save image with better or specificresolution in gui matlab?

I trying save image with the command getframe but resolution is very low, so I can not give zoom. For now I'm using the code: [arq,dir] = uiputfile('*.jpg','Output…
0
votes
2 answers

how to save imageof axes for high resolution in matlab GUI

I trying save image with the comand 'getframe' but resolution is very low, so I can not give zoom. for now I'm using the code: [arq,dir] = uiputfile('*.jpg','Output…
0
votes
1 answer

zooming in one subplot and then display it in another subplot

I have created a GUI which has 2 subplots.The first one display original image. How can i do when i want to zoom in first subplot and then display it in second subplot? Thanks in advance
jafari
  • 25
  • 5