Tagged Questions

Octave is a GNU project that provides a scripting language for mathematical analysis. Octave is (pretty much) compatible with MATLAB.

learn more… | top users | synonyms

40
votes
31answers
7k views

What is your favourite MATLAB/Octave programming trick? [closed]

I think everyone would agree that the MATLAB language is not pretty, or particularly consistent. But nevermind! We still have to use it to get things done. What are your favourite tricks for making ...
17
votes
3answers
549 views

Why does Gnu Octave have negative zeroes?

This is an odd one I'm puzzled about. I recently noticed at the Gnu Octave prompt, it's possible to enter in negative zeroes, like so: octave:2> abomination = -0 And it remembers it, too: ...
15
votes
7answers
22k views

Is there any good Octave GUI/IDE for Windows?

The default GNU Octave installation comes with a CLI. If the same CLI was inside a Windows Forms or WPF or GTK interface it would be much better, as it would allow: White background Normal copy/past ...
14
votes
1answer
472 views

How can I access a matlab/octave module from python?

I am looking for a way to access a matlab module from python. My current situation is this: I have a python code that does numerical computations by calling Lapack routines while the memory is ...
13
votes
9answers
972 views

Why/when should I prefer MATLAB over Octave?

In our shoestring operation we need to prototype algorithms in some higher-level language before committing to a C implementation on embedded hardware. So far we have been using MATLAB to do that, ...
12
votes
1answer
5k views

Octave / Matlab: Extend a vector making it repeat itself?

Is there a way to extend a vector by making it repeat itself? >v = [1 2]; >v10 = v x 5; %x represents some function. Something like "1 2" x 5 in perl Then v10 would be: >v10 1 2 1 2 ...
10
votes
6answers
971 views

How should I do rapid GUI development for R and Octave methods (possibly with Python)?

We are a medium-sized academic research lab whose main outputs are new statistical methods for analyzing large datasets. We generally develop in R and MATLAB/Octave. We would like to expand the ...
10
votes
3answers
453 views

How do I detect if I'm running MATLAB or Octave?

I need to write code that should run equally well in Octave and on MATLAB. Problem is that it needs to do some GUI stuff, which MATLAB and Octave handle completely differently. Is there a way I can ...
8
votes
1answer
137 views

Same equation, different answers from Pylab and Octave

I am porting code created in octave into pylab. One of the ported equations gives dramatically different results in python than it does in octave. The best way to explain is to show plots ...
8
votes
3answers
974 views

Graph Formatting Tools For Octave

I know that Matlab allows for you to format the graph after its created through the interface. However there isn't the same features in Octave. Is there a tool that goes between Octave and GnuPlot? If ...
7
votes
2answers
290 views

Interfacing octave with C#

I have developed a program in Octave to which I would like to add a GUI layer. I want to create an executable program in C# that I can distribute but want to stick with the linear algebra constructs ...
6
votes
2answers
201 views

Octave tutorials/articles/etc

What are some good sources of information on Octave besides its official reference?
5
votes
2answers
86 views

How can I suppress the output of a command in octave?

In Octave I can suppress or hide the output of an instruction adding a semicolon to the end of a line: octave:1> exp([0 1]) ans = [ 1.0000 2.7183 ] octave:2> exp([0 1]); octave:3> Now, ...
5
votes
4answers
135 views

MATLAB/Octave: cut a lot of circles from a image

I have an matrix (image) and information about interesting part within circles (center corrdinates and radii given). I want to cut for all the circles the parts of the matrix in order to do some more ...
5
votes
1answer
373 views

Any reason why Octave, R, Numpy and LAPACK yield different SVD results on the same matrix?

I'm using Octave and R to compute SVD using a simple matrix and getting two different answers! The code is listed below: R > ...
5
votes
2answers
129 views

Using octave headless

Is there a possibility to use Octave headless. Something like this octave < "5+4" >result.txt
5
votes
3answers
1k views

Efficient multiplication of very large matrices in MATLAB

I don't have enough memory to simply create a diagonal D-by-D matrix, since D is large. I keep getting an 'out of memory' error. Instead of performing M x D x D operations in the first ...
5
votes
2answers
972 views

two arrays defining 2d coordinates, as array indices, in matlab/octave

I have a 2D array, call it 'A'. I have two other 2D arrays, call them 'ix' and 'iy'. I would like to create an output array whose elements are the elements of A at the index pairs provided by x_idx ...
5
votes
3answers
381 views

compute only diagonals in matrix product in octave

Is there a way in octave to compute and store only the diagonal of a matrix product? Basically like doing vector = diag(A*B); I don't care about any of the values of A*B except those on the ...
5
votes
2answers
3k views

octave + gnuplot + os x 10.6 : nothing happens

On my first-gen Macbook Pro, with OS X 10.6.1, I can launch gnuplot and get a plot, after I set the terminal to x11, with a command like plot [-6:6] sin(x). But when I launch octave, and try a plot ...
4
votes
3answers
194 views

Porting Mathematica to Octave

I have to port a lot of files from Mathematica to Octave. I found a Lisp Mathematica parser from ~1991 but I am not really familiar with Lisp, so I was wondering if anyone has any experience with ...
4
votes
2answers
113 views

Octave/Matlab: Efficient calc of Frobenius inner product?

I have two matrices A and B and what I want to get is: trace(A*B) If I'm not mistaken this is called Frobenius inner product. My concern here is about efficiency. I'm just afraid that this ...
4
votes
1answer
325 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, ...
4
votes
2answers
254 views

Interface between Octave and R

Could anyone kindly update the status on the interface between Octave and R? ROctave package was developed in 2002, but no new updates after that. I like to call some functions from Octave in R such ...
4
votes
2answers
103 views

Identifying (and removing) sequences from a vector in Matlab/Octave

I'm trying to prune any sequence of length 3 or more from a vector of numbers in Matlab (or Octave). For example, given the vector dataSet, dataSet = [1 2 3 7 9 11 13 17 18 19 20 22 24 25 26 28 30 ...
4
votes
0answers
726 views

How do I create a simple Octave distributable without installing Octave

The Octave documentation on this subject is both intimidating and sparse. I did not know where else to document the solution I found, so I am posting here. I apologize if that's inappropriate, but I ...
4
votes
1answer
2k views

Zoom out in Octave / gnuplot

I use Octave with gnuplot under Windows. I can zoom in using the right mouse button. But how can I zoom out from the UI?
4
votes
5answers
857 views

Tool to diagonalize large matrices

I want to compute a diffusion kernel, which involves taking exp(b*A) where A is a large matrix. In order to play with values of b, I'd like to diagonalize A (so that exp(A) runs quickly). My matrix ...
4
votes
2answers
879 views

What's the fastest way to approximate the period of data using Octave?

I have a set of data that is periodic (but not sinusoidal). I have a set of time values in one vector and a set of amplitudes in a second vector. I'd like to quickly approximate the period of the ...
4
votes
1answer
1k views

Octave / Matlab: How to plot the roots of a polynomial

Im trying to plot the roots of a polynomial, and i just cant get it. First i create my polynomial p5 = [1 0 0 0 0 -1] %x^5 - 1 r5 = roots(p5) stem (p5) Im using the stem function, but I would like ...
4
votes
6answers
2k views

Sine wave frequency fitting

This question is based on a previous similar question. I have the following equation and an adjusted (some random data): 0.44*sin(N* 2*PI/30) I am trying to use the FFT to get the frequency from the ...
4
votes
4answers
4k views

How do I play a sound in Octave?

Octave appears to assume that a specific sound playing utility will be available on a system but doesn't seem to provide the ability to specify an alternate. In the error below, Octave is looking for ...
4
votes
6answers
1k views

Finding a curve to match data

I'm looking for a non-linear curve fitting routine (probably most likely to be found in R or Python, but I'm open to other languages) which would take x,y data and fit a curve to it. I should be able ...
4
votes
5answers
6k views

Loading data from Excel file into Octave

I have an Excel file with a large set of data. The built-in graphs available in Excel are not enough to analyze these data, so I am thinking about using some tool like octave or R. I was thinking ...
3
votes
1answer
42 views

MATLAB: Finding n-th smallest element in per row

I want to find the n-th smallest element for each row in a matrix. Example: n = 2 M = [1, 2, 3; 4, 5, 6; 7, 8 9] Result = [2, 5, 8]
3
votes
4answers
72 views

link PHP with Octave or Matlab

Suppose I have a lot of math calculations which are quite tedious to implement in php. Is it possible to somehow link PHP and Octave on the server in such a way, that php sends parameters to Octave ...
3
votes
1answer
40 views

Initialise a vector with 1's at indexes set in another vector

Given a vector: v1 = [1 ; 3; 5] and without using a for loop how could you create a new vector v2 of length n with: each element of v2 set to 1 if it's index is in v1, 0 otherwise. So for ...
3
votes
2answers
109 views

Compare two vectors of unequal lengths to get a logical array

I need to vectorize the following code: a = [1 2 3 2 3 1]; b = [1 2 3]; for i = 1:length(a) for j = 1:length(b) r(i, j) = (a(i) == b(j)); end end The output r should be a logical ...
3
votes
2answers
75 views

1-of-K coding in Octave

I'm trying to get a binary one-of-K coding of a integer vector in Octave. I've got a vector y, say y = [1 ; 2 ; 3 ; 1 ; 3] and I want a matrix Y = [1 0 0 0 1 0 0 0 1 1 0 0 0 0 ...
3
votes
1answer
84 views

Playing an array as sound and recording its output in parallel

I know Octave/MATLAB can play arrays as sound, but I was wondering if Octave can do this: I would like to cycle through a range of frequencies and have Octave play them using the speaker out on my ...
3
votes
1answer
72 views

editing / splitting / saving data in a text file

I have a text file called playlist.pls which is dynamically created, and in the text file I have thousands of lines that look like this: File000001=/home/ubu32sc/Documents/octave/pre/wavefn_0001.wav ...
3
votes
2answers
249 views

Left Matrix Division and Numpy Solve

I am trying to convert code that contains the \ operator from Matlab (Octave) to Python. Sample code B = [2;4] b = [4;4] B \ b This works and produces 1.2 as an answer. Using this web page ...
3
votes
2answers
557 views

Octave plot from Qt C++ application

I have a QT C++ application that runs the Octave program using QProcess. I am able to communicate with it by reading the standard output/error and writing to it's standard input using write method ...
3
votes
1answer
39 views

Transform list(1, 2, 3) to [1, 2, 3] in Octave

As explained in question title, I'd like to use lists in octave and subsequently transform lists into usual arrays. Is there a way to do that?
3
votes
1answer
345 views

How do I read a delimited file with strings/numbers with Octave?

I am trying to read a text file containing digits and strings using Octave. The file format is something like this: A B C a 10 100 b 20 200 c 30 300 d 40 400 e 50 500 but the delimiter can be ...
3
votes
1answer
174 views

Octave/Matlab: vectorising '==' operator?

I can look for the position of a value, i.e. 45, in a vector 'data' using the '==' operator and the 'find()' function: data = [ 71 65 23 45 34 12 21 34 52 ]; value = 45; find (data == value) ans = ...
3
votes
3answers
804 views

Pass Parameters _ Shell Script - Octave Script

How can i pass two parameters (number vectors) from a Shell Script to a Octave Script ?? That's the idea.. In "prove.sh" #!/bin/bash .... do something that processing vector1 vector2 ./draw.m ...
3
votes
2answers
811 views

Filter design for audio signal

What I am trying to do is simple. I have a few .wav files. I want to remove noise and filter out specific frequencies. I don't have matlab and I intend to write my own code for all the filters. Right ...
3
votes
1answer
611 views

Principal Component Analysis in MATLAB

I'm implementing PCA using eigenvalue decomposition for sparse data. I know matlab has PCA implemented, but it helps me understand all the technicalities when I write code. I've been following the ...
3
votes
1answer
548 views

How to HTTP GET or POST with Matlab or Octave?

In Matlab Function Alphabetical Reference I only found the following function: web - Open Web site or file in Web or Help browser Isn't there a way of accessing a web resource without opening a ...

1 2 3 4 5 7