0
votes
1answer
55 views

Specifying axes's step sizes in graph

I'm trying to plot a graph in Octave. How can I specify step size? For example, by default x axis's step size is 0.5(0---0.5---1---1.5---), I want to make it 0.1, and y axis's step size 0.01.
0
votes
1answer
24 views

How to plot graph from known array of xs and array of ys in Octave?

I need to draw several graphs for my report. How can I draw graph, if x and y pairs are saved in a file. Is it possible to directly read values from file and draw a graph? Example x,y pairs: 0.0 ...
1
vote
0answers
142 views

how do I make gnuplot plot in a gui interface instead of inside of a terminal?

How do I change the plot function in ocatave to get the plots in a new gui interface.. I used to get the graphs in a white gui window and was able to see colors etc, but now in a different computer ...
0
votes
1answer
94 views

Plotting over displayed image in Octave

I am developing some routines in Octave and need to display an image, then plot a curve on top which will hopefully overlay some image features. However, I cannot work out how to match the ...
0
votes
0answers
95 views

Error plotting data read from csv file

I am getting the followin error when trying to plot in GNU/octave: octave:22> plot(b(:,2),b(:,4)) error: invalid conversion from real matrix to real scalar error: __calc_dimensions__: expecting ...
1
vote
1answer
295 views

Octave: Creating Two Histograms with Color Blending

I am creating one histogram on top of another in Octave. hold on; hist(normalData(:, column), 10, 1, "facecolor", "g"); hist(anomalousData(:, column), 10, 1, "facecolor", "r"); hold ...
0
votes
2answers
736 views

How to make dashed / dotted / dash-dotted line in octave?

I'd like to create monochrome diagram/graph in octave using plot command. That is why I'd like make different lines of graphs with using line style, for example dashed/dotted/dash-dotted styles. ...
0
votes
1answer
113 views

How to plot a sparse data stream with curves

EDIT: I would like to make a plot based on the following code: function one(varargin) thresh = 200; setenv GNUTERM 'x11'; x = [0.05:0.05:10]; x = transpose(x); y = rand(200, 1); ...
1
vote
1answer
79 views

Give CPU more power to plot in Octave

I made this function in Octave which plots fractals. Now, it takes a long time to plot all the points I've calculated. I've made my function as efficient as possible, the only way I think I can make ...
2
votes
1answer
168 views

How to draw a circles on Octave [matlab] compass plot?

I have some vector (matrix 2*64) points that I draw in a standard way on a compass plot. compass(data) This plot looks like this: Now I'm doing kmeans clustering on my data. After clustering I ...
0
votes
2answers
172 views

Always not responding/freeze when use plot with QtOctave

I'm new here. I've the same matter as this one but only using QtOctave; beside oct2mat pkg hasn't never been loaded on my pc. Typing: pkg unload oct2mat octave returns: error: package ...
0
votes
1answer
85 views

octave plot text field size

I am adding text to an octave plot using: h = text(x1, -2, 'x_1'); Then I attempt to change the font size with: set(h, 'fontsize', 16); Only the subscript '1' changes in size. Is that a bug or am ...
2
votes
2answers
146 views

Character-mode (shell) plots with Matlab / Octave?

This is maybe a bit odd question, but anyway. Sometimes, I am using ssh into servers or laboratory computers all over the place (continent) in order to check stuff and sometime even run Matlab or ...
1
vote
1answer
55 views

Place count above bin in histogram/bar chart

I was wondering if there is way to put the count of a bin in a histogram/bar chart above the bin itself. I know that it is possible to change the xtick values to whatever you want (below the bin), ...
0
votes
1answer
163 views

octave saveas undefined

I have an octave code M = csvread('result.csv'); h=hist(M); saveas(h,'hist.jpg'); I got error message error: `saveas' undefined near line 11 column 1 I remember I did use saveas before. How ...
1
vote
3answers
52 views

How to plot the two classes so that they are distinguishable?

In the following piece of code, how can I tell it to plot data of each class with a different sign, like x and circle: C_11=[3;3.5;4;4.5;5;5.5;7]; C_12=[15;16;17]; C_1=[C_11;C_12]; C_21=[0;0.5;1;2]; ...
0
votes
1answer
66 views

How to assign individual labels to values on the axes in Matlab?

I have a matrix in matlab. Each row/column has a unique label. these labels are in a row-matrix. How do I print these labels on the figure next to that row/column number? Nevermind the cluminess in ...
1
vote
1answer
85 views

Calculates coordinates for Ellipsoid

I want to plot an ellipsoid but I want its center and rotational point to be at the end of the ellipsoid instead of the center. How do I take the end point coordinates and convert them into center ...
3
votes
1answer
134 views

Display octave graph output in emacs?

When using the interactive octave prompt within emacs, plots appear in a new, separate window. (Worse, in my configuration, this window doesn't even raise itself to be seen, and can't be selected by ...
-1
votes
1answer
55 views

changing the values specified on the axis - matlab

I am trying to generate the following graph: Up until now I managed to do the following: > close all figure(1) x=-12:0.3:12; y=gaussmf(x,[3 3]); xlim([-12,12]) ...
1
vote
2answers
180 views

MATLAB - Plotting lines in different colours according to comparible z value

I am using some MATLAB code to track particles in a fluid solution via video capture. All the particles tracked are stored in an array of cells (tr) with each cell entry being a different particle ...
0
votes
1answer
88 views

scatter3 - show x, y, z in certain way

I would like to show the x, y, z axis like this (together with the scatter data): 3D coord. system I tried to edit the graph using the GUI (e.g. trying to move the yaxis). I there any way to achieve ...
0
votes
1answer
41 views

Adding text below text box

I have a text item on one of my plots, placed at a certain location, with a certain orientation: th=text(x,y,'some text','HorizontalAlignment','right','rotation',rot); Based on its position ...
0
votes
1answer
1k views

Custom x-axis values in a matlab plot

Currently when I plot a 9 by 6 array, the x-axis of the figure is just 1, 2, 3 up to 9. The Y-axis shows the correct values. Instead of 1 to 9 I would like the x-axis values to be custom. They should ...
0
votes
1answer
71 views

Plotting a parameter 'map' in octave

I want to be able to plot a 2d grid of points onto a parameter plane. I want to plot each of the points, but plot it in a different way depending on what result the parameters/co-ordinates of that ...
0
votes
0answers
153 views

Plotting multiple plots

I have some code which I run in Octave (but runs perfectly fine under matlab) that produces plots for me of the physics experiment I'm running. I've decided it would be good if I could produce a few ...
2
votes
1answer
141 views

Matlab/Octave: can't plot equation

I'm using Octave to plot a simple equation, but it returns an empty plot like this here is the code: # Computing of Zin # Constants RL=50; L=1; mu=4e-7*pi; eps=1; nu=3e8/sqrt(eps); s=50; r=7.5; ...
1
vote
0answers
142 views

How to plot from octave to a pdf without X11

I want to create pdf or png plots from octave on an ubuntu system where I just have a command line, no X11, no windows. I want to do something like this: plot(x, y); print -dpng myplot.png But plot ...
3
votes
1answer
411 views

Octave : Always not responding/freeze when use plot

I'm using Windows 7 64 bit. Each time, I'm using plot function, plot windows will shows and draws successfully, but after that it will be always not responding. it means : I cannot touch to this ...
0
votes
0answers
43 views

Heath map of data stored in a matrix

I am trying to reproduce the results presented in http://en.wikipedia.org/wiki/Fisher-Yates_shuffle#Implementation_errors. Eventually, I'd like to build a plot like this one: How can I obtain such ...
2
votes
2answers
636 views

Matlab change a single point in a plot without replotting

So I have a plot of N points in the 2D plane (N can be very large). I am writing a script that is to show the workings of an algorithm. So I have for loops. At each step in the for loop I'd like to ...
0
votes
1answer
257 views

annotated scatter graph matlab/octave

I have 25 pairs of (x,y) co-ordinates. Each of these pairs corresponds to a country. I want to plot the 25 points on a scatter graph, and have the country name for each point directly next to the ...
0
votes
1answer
148 views

Setting color of curve in octave

I have two column of data and would like to plot using octave. I did following : f = load('rate.txt','r') plot(f(:,1) ,f(:,2)); plot(f(:,1)); hold on; plot(f(:,2)); I got respective graph. But ...
0
votes
2answers
3k views

how to resize x and y axis

How can I resize x and y axis ? What I want, n more specific; 3900 | . | . | . | 60 | | 30 | |_____________________________ 0 60 120 180 ... 3600 ...
1
vote
2answers
906 views

Animate trajectory using Octave

I have a set of (x,y) coordinates that describe the trajectory of an object. I'd like to animate this trajectory using GNU Octave. The data set is quite large so I won't be able to redraw the entire ...
0
votes
1answer
319 views

Matlab / Octave and Compass with no arrows and changing line style

I have code that will plot a compass plot in octave (3.2.4) /matlab but how do I get rid of the arrows / change color [x,y]=pol2cart(90*pi/180,1); compass(x,y) I tried ...
1
vote
2answers
175 views

Plotting d-dimensional data

I have following format of data in a .txt file. नोभेम्बर [0.013597779962868256, -0.10849757437254635, -0.15999846585159766, -1.2417475384869558, -0.6802765400695919, 0.44552601044477186, ...
1
vote
1answer
291 views

matlab/octave: exponential scale on x axis in plot

In Matlab or Octave I want to plot a vector with an exponential scale on the x axis. Changing the xticks and xticklabel do not seem to solve the problem.
1
vote
2answers
2k views

Adding an x axis label with 2 y axis labels

I can add 2 y-axis to a octave/matlab plot but when I try and add the x-axis at the bottom of the plot with xlabel('Frequency in Hz') it doesn't show up [ax h1 h2]=plotyy(xx,yy,xx,yy2); %plot two y ...
1
vote
1answer
346 views

Print a 3d plot in Octave after rotating

I have an Octave script that plots a curve in 3-dimensional space. When the plot window comes up, I can manually rotate and zoom using the mouse, but if I go back to the Octave shell and type ...
0
votes
1answer
299 views

Terrible performance of the GNU Octave `scatter` function compared to MATLAB. Any replacement?

Why is the performance of scatter function so bad in Octave when compared with plot function? Also, the MATLAB version of the scatter function seems blazing fast compared to its Octave counterpart. ...
6
votes
2answers
1k views

Dynamic Plotting in Gnuplot (drawnow in MATLAB)

Is it possible to create dynamic plots in Gnuplot? What I require for my purposes is that, as the data is generated through some loop, I will use gnuplot to put some marker on the x-y axis preserving ...
0
votes
1answer
1k views

Draw Lines in octave

Is possible to draw lines in octave with plot or plot3? I mean, to define a matrix with points and plot them in pairs automatically. Thanks in advance.
0
votes
2answers
546 views

octave, matlab, plotting in two different plots

the question is how to plot two different plots simultaneously in matlab or octave. I have loop, during execution in that loop there are data which should be plotted in two different plots. After ...
3
votes
1answer
642 views

Multiple plot calls in octave

I'm working in octave, I need to call plot3 two or more times to produce one graph. But it only plots the last call of plot3. I need some help. This is my code: It only plots the line plot3(tras(1), ...
2
votes
1answer
619 views

How to navigate an octave plot?

In Octave, when a plot is created, how do I move along the axes? I have managed only to zoom in/out.
6
votes
1answer
1k views

Markerfacecolor in Octave not working?

I'm trying to plot a collection of points as well as a geometrical shape, which is working fine. However, i wanted bigger dots for the points. The standard octave dot ('.') cannot be resized, ...
2
votes
3answers
864 views

Getting octave to plot when invoking a function from the command line

I am trying to run a function in octave from the command line. The function is currently run like so: octave --silent --persist --eval 'function(input arguments)' function.m contains a plot ...
4
votes
1answer
14k views

How can I set the window size of a plot window?

Is it possible to set the window size / position of a plot window (figure)? plot(0:20, sin(0:20)) Or is there any other possibility to change the size of the print() command? print('aa.png', ...