0
votes
1answer
16 views

How To Put String Labels on Contours for Contour Plots in MATLAB

I am wondering if it is possible to label the contours of a MATLAB contour plot with a set of user-defined strings? I am currently using the following code snipper to produce a labelled contour plot: ...
1
vote
1answer
11 views

how to use “axis tight” on both y axes for plotyy in MATLAB

I have two sets of y axes for the same x axes, so I know I can use: [AX,H1,H2] = plotyy(x1, y1, x1, y2); to plot it, and that works. I can label the axes: set(get(AX(1),'Ylabel'),'String','Torque ...
0
votes
2answers
25 views

Want to make a line, using a handle to a figure in MATLAB

I have a problem, where I already have a handle to a figure created, and I want to somehow now draw a line, given that handle. For example, I have: f1 = figure(1); a1 = gca; For commands like plot ...
-1
votes
1answer
23 views

Tell imagesc in MATLAB to use specific figure

I am getting more than ...slightly flustered... at trying to do what should otherwise be a very, very simple task. I want to use a particular figure, say, figure(3), for doing imagesc. So in the ...
2
votes
1answer
58 views

How do I embedded another figure within a figure in MatLab?

I'm developing a GUI for my MatLab code using UITab and UITabGroup from this previous post: Tabbed software in matlab However that code populates each tabs ui within a single function. Since my ...
0
votes
0answers
27 views

Set the starting position of an axis

I have the following bar plot with the command: set(gca,'YScale','log): http://i.imgur.com/WtM7VZb.png However, especially in the first case, I want the bars only to grow, let's say from 10^-1. I ...
-4
votes
0answers
52 views

An strange matlab program. the if syntax [closed]

q0=0.57:0.01:0.57; m=length(q0); w0=0.55:0.01:0.58; n=length(w0); P=zeros(1,n); T=zeros(1,n); figure for j=1:m q=q0(j); for i=1:n w=w0(i); y=(2-w)/q; P(i)=0; if ...
0
votes
1answer
59 views

Set the position of the Xtick labels matlab

I want to shift the x ticks labels downwards in this figure: I'm not sure how to do this? This is the script I'm using: y=[0.5093 0.8526 0.9171]; x=[0 1600 1100]; hand =plot(y, 'ob-'); set(gca, ...
0
votes
0answers
24 views

Clear all graphical object of a certain type

I created a GUI program with MATLAB, with a menu bar and tabs, each containing a plot, a text box, etc. The problem is that when I select a tab from the menu bar and plot something, the axes objects ...
0
votes
1answer
20 views

Plotting and merging plots

Let x=[1 2 3 4 5 6 7 8 9 10 11 12]; t=[0 1 2 3 4 5 6 7 8 9 10 11]; Then plot(t, x); will produce a straight line as shown below: Now suppose I am not given x and t instead x and t being ...
0
votes
0answers
16 views

co-ordinates plotted onto an RGB image in matlab

I have arrays Rx, Ry each of size about 100x1. They contain co-ordinate points. Some of which might be floats. I can plot these as follows figure, imshow( im ), hold on; plot( Rx, Ry, 'r-' ) Now, I ...
0
votes
1answer
24 views

Convert contour in a plot in matlab to a contour in image

I have x and y coordinates of a contour. Now they cannot be used as pixel locations since they are not integers. I am unable to find a way to convert them into pixel locations. Floor and round ...
0
votes
0answers
35 views

AND operation for textfiles in MATLAB

I've 3 .txt files. I want to perform and operation to these 3 text files and to save the output in a new text file. fid = fopen(AND('a.txt','b.txt','c.txt')); will this work as per my requirements? ...
0
votes
1answer
21 views

scalling and plotting 2d sensor data

I have a sensor data whose value varies from 0 to 65536 as the data type is uint16. I want to draw a 2D plot which should vary from -3000 to +3000 on X-axis with respect to time. For example if in my ...
0
votes
1answer
38 views

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. ...
0
votes
3answers
49 views

Plot a data set neatly in MATLAB

I'm programming in MATLAB. I've got a data set which is reduced in dimensions and I want to plot a it like the figure below: This image is produced by python but I think there must be a way to plot ...
0
votes
0answers
49 views

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 ...
1
vote
2answers
31 views

`imagesc` in MATLAB: paper size and `colorbar`

I am using imagesc in MATLAB to show an NxM matrix as an image, where the warmer is the color the higher is the value. By using the following command: f = imagesc(points, [0 1]); the matrix points ...
0
votes
0answers
55 views

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] ...
0
votes
0answers
28 views

I cannot load image on second figure in matlab

I have created a button call back like this in first figure in main.fig: function about_btn_Callback(hObject, eventdata, handles) % hObject handle to about_btn (see GCBO) % eventdata reserved - ...
0
votes
1answer
47 views

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 ...
0
votes
1answer
37 views

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 ...
-1
votes
3answers
44 views

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 ...
0
votes
0answers
22 views

how save image with better or specificresolution in gui matlab?

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 Files'); ...
0
votes
1answer
63 views

How to animate this 3D plot in Matlab?

My current code : a=7 f=10 T=1/f; v=40 wl=v/f; x1=1; x2=30 step=0.01 t=x1:step:x2; x=x1:step:x2; y=a*sind(2*pi*f*(t+(x*T)/wl)); h=plot3(x,y,t); set(h,'EraseMode','xor','MarkerSize',20) ...
-1
votes
1answer
54 views

Setting threshold in MATLAB [closed]

How to set threshold? I'm working on CBIR, code shown below is entropy based search disp('Entropy Part Starting. . .'); % Open database txt file... for reading... fid = fopen('database.txt'); ...
2
votes
3answers
56 views

Fill an outline which is incomplete

Consider that I have a colored image like this in which the outline is not complete (There are gaps between lines). I want to be able to fill the area between the lines with one color or another. This ...
0
votes
1answer
46 views

matlab: how to concatenate strings?

I want to produce multiple movies in matlab like for i=1:5 %calculate a movie-array H (gridsize depends on i) number=num2str(i); movie2avi(H, 'movie_'+number+'.avi'); end Obviously it ...
0
votes
1answer
31 views

How to remove axis in MATLAB

axis off Not working. function displayResults(filename,hObject, eventdata, handles) % Open 'filename' file... for reading... fid = fopen(filename); for N=6:1:10 imagename = fgetl(fid); if ...
0
votes
1answer
36 views

change LineWidth of plot of fit in matlab

I'd like to change the width of my fit plot along the lines of: plot(fit, 'LineWidth', WidthSpec) Unfortunately, when I try plotting the data and fit simultaneously like: plot(fit, 'LineWidth', ...
1
vote
1answer
41 views

difference between figure window and axes in GUI MATLAB

To display output images I've used below code function displayResults(filename, header) figure('Position',[200 100 700 400], 'MenuBar', 'none', 'Name', header, 'Resize', 'off', 'NumberTitle', ...
-1
votes
1answer
43 views

Plot f(x) and g(x) as function of x

I have: A=f(x); B=g(x); I want to plot these graphs A against B: I did plot(B,A); I also tried plot(x,B,x,A) (which seems more plausible). But apparently, this is not the plot I should ...
2
votes
1answer
72 views

Plot many horizontal Bar Plots in the same graph

I need to plot a x-y function, that shows the histograms at x-values. Something similar to the bottom plot of the next figure: I tried to use matlab's "barh", but can't plot many in the same ...
1
vote
0answers
48 views

Matlab irregular shape surf-like plot

I intend to use Matlab to plot the probability distribution from stochastic process on its state space. The state space can be represented by the lower triangle of a 150x150 matrix. Please see the ...
1
vote
1answer
47 views

How do you force a figure to span multiple monitors in MATLAB?

I'm using MATLAB R2011a on a multi-monitor Linux system (Red Hat Enterprise Linux 6.4). The answer to this may be dependent on what operating system or graphics subsystem you are using. Run the ...
0
votes
0answers
22 views

Matlab axes position and orientation change multiple times in a figure to draw curves

I am trying to draw multiple curves in a figure window of Matlab but the condition is that the axes position and orientation will be different for different curves. For example The first curve is ...
0
votes
0answers
32 views

unknown image format on axes in MATLAB

I'm working on CBIR, in my GUI I've 6 axes one for query image 5 for resulted images. For displaying images on axes my code is function displayResults(filename,hObject, eventdata, handles) % Open ...
1
vote
0answers
61 views

How to statistically plot and show the difference between two fluctuations

This is kind of a tricky question.So if you cannot understand kindly do post comments. This is a data between an Anchor and source with their dBm values. If you see the first set of data it is ...
0
votes
1answer
49 views

MATLAB: Adding a legend to the bottom of a figure without changing figure width or resizing plots

I am constantly running into issues with the legend in MATLAB plots and would like to come up with a way to avoid them in the future. What I would like to do is the following: Create a figure with ...
0
votes
1answer
50 views

Separate bars in matlab

I want to separate the two graph bars shown in the below figure this is the code I'm using: bar(uu,nn/numel(n)); hold on bar(uu1,nn1/numel(n1),'r'); hold off , but I want them to be like this: ...
1
vote
2answers
42 views

how to make two bars in the same fig Matlab

I want to make two bars in the same fig in matlab. Now, I have two separate bar charts, what I want to do is combining them in one chart but with different colors (eg red and blue) to differentiate ...
2
votes
1answer
41 views

How to hold a plot when using plot3 in matlab?

This works as I expected: for i=1:100 hold on; plot(i,i^2); drawnow; end Ploting the points as they come in the same figure. This on the other hand, doesn't: for ...
0
votes
1answer
54 views

Matlab Update Image Handles

I'm creating an Image Editing Program using Matlab. The user uploads the image in one pushbutton callback function. The user can then use other pushbutton callbacks to edit the image (rotate, change ...
0
votes
1answer
87 views

displaying images on axes in MATLAB

I have a GUI with 5 axes in it, where images which are stored in text file(notepad) are displayed. Images in text file are not static, it keeps updating with new ones. I mean for first search images ...
0
votes
1answer
53 views

Value of handles.axes in MATLAB GUI

What value will get stored in handles.axes if image is present and if the image is not present? I want check the condition whether image is present or not, and i implemented this if handles.axes1==0 ...
1
vote
1answer
45 views

Editing some figures in Matlab by removing some white space

I have 4 figures I've done in Matlab. The problem is that there are some white spaces but I don't know how to remove them from the figures. In the below figures there are some white spaces I want to ...
1
vote
1answer
32 views

Set plot (axes) view “box” without affecting limits

I have a 2D plot with many data elements on it covering a extensive area. Although all the data is necessary, I am usually interested on a small element of the plot. I would like to programmatically ...
0
votes
0answers
50 views

generation of small circles in a circular annulus region using Matlab?

In the given figure, R1 is radius of inner circle and outermost circle has radius of 3*R1. All the small circles are of some radius say R2. I have calculated the number of small circles in each tier ...
1
vote
1answer
42 views

matlab plot image as background to graph

I have an image that I would like to set as the background of plot I am making. However it plots it so that the image taks up the axis([0 1000 0 1000]) while the axis for my graph is much smaller: ...
3
votes
1answer
118 views

Changing figure fonts in Matlab has no effect

I'm having problems with rendering Greek characters in my labels and legends, so I thought maybe switching fonts would help. Thus, I discovered an even bigger problem - Matlab doesn't seem to honor my ...

1 2 3 4 5 7