Tagged Questions
0
votes
2answers
22 views
Obtain matrix of indices in octave / matlab
Given some multidimensional matrix A in Octave / Matlab,
What's the easiest way to get a matrix of the same size as A where all elements are replaced by their index along the k'th dimension
ie for ...
0
votes
2answers
29 views
Operate on all rows of a matrix without loop, octave
Suppose I have a matrix A and I want to obtain the following:
for i=1:m
A(i,:) = something which depends on i;
endfor
Is there a way to obtain that without the loop?
Added: Ok, I've understood I ...
0
votes
1answer
25 views
Vectorize functions on regions of array Octave/ Matlab
I would like to vectorize the following Octave code:
A = 1:100;
B = [20 40 60];
C = zeros(3,11);
for i = B,
C(i,:) = A( (B(i) - 10) : B(i) );
end
Which extracts sub-arrays starting at specific ...
-1
votes
2answers
30 views
Vectorization or sum as matrix operations [closed]
Let there be the following definition of gradient descent cost function
with the hypothesis function defined as
what I've come up with for multivariate linear regression is
theta = theta - ...
2
votes
1answer
39 views
Octave/Matlab: change value at certain position in matix
I have a vector which tells me where in matrix I have to change certain bit and matrix with data. For example:
a = [2
0
4]
data = [ 1 0 1 0;
0 0 1 0
1 1 1 1]
a tells ...
0
votes
0answers
54 views
How to prevent Signal drifting when changing frequency
When I recreate a signal it seems to look great. But when I try and increase it's frequency (which is done in a for loop and the variable new_freq=2) it starts to drift.
See Image below (The top ...
0
votes
2answers
68 views
Vectorize matrix multiplication
I have a school project about running a SOR algorithm on Octave, but mine is very inefficient. So I have this snippet of code:
for ii=1:n
r = 1/A(ii,ii);
for jj=1:n
if (ii!=jj)
...
0
votes
0answers
36 views
How can I vectorize the following piece of short code for Octave?
people!
I need to optimize my code for Octave removing loops. But I was n't quite successful.
There are two loop: one for lsode solver of differential equations and another in the end for calculating ...
2
votes
2answers
64 views
Take the product of all nonzero elements in each column of a sparse matrix
Is there a well-vectorized way to take the product of all the nonzero elements in each column of a sparse matrix in octave (or matlab) (returning a row-vector of products)?
0
votes
1answer
26 views
Octave matrix splicing by using vectorization
I have a matrix A which is pretty large, and I'd like to compute the function f for several sub-matrices of A.
Specifically, I'd like to apply f to each sub-matrix A(:, x:y), where x and y are part ...
0
votes
2answers
84 views
Extracting portions of matrix into cell array
I have a pretty large matrix M and I am only interested in a few of the columns. I have a boolean vector V where a value of 1 represents a column that is of interest. Example:
-1 -1 -1 7 7 -1 ...
1
vote
1answer
40 views
Vectorization of cell-array element manipulation
I have a 1xN dimensional cell-array containing matrices of dimension AxB, where A > 0 and B > 2. I want to extract the second and third column of each matrix and create a new cell-array containing ...
2
votes
2answers
102 views
GNU Octave: How to find n maximum elements of a vector
I have vector in Octave like this:
[ 4 5 1 2 3 6 ]
Is there any function that returns n maximum elements of that vector, in this case, the three biggest are 6, 5, and 4?
[6 5 4]
The Octave ...
2
votes
3answers
115 views
How to vectorize this algorithm, octave verses matlab speed issue
Background story:
This is an old script, I needed to compare two slightly different images of the same object to get data on the camera itself. I wrote this script in octave and tried it, later I ...
1
vote
1answer
170 views
Perform a vectorized exponential moving average in octave
In GNU Octave, would like to calculate an n-day exponential moving average of a vector without using a for-loop.
I am able to do this with a for loop but it is inefficient. I would like to use the ...
1
vote
2answers
95 views
How to vectorize the code in MATLAB
I have some Cluster Centers and some Data Points. I want to calculate the distances as below (norm is for Euclidean distance):
costsTmp = zeros(NObjects,NClusters);
lambda = ...
1
vote
2answers
65 views
How to vectorize matrix subsetting such that find() returns a matrix?
Given a matrix A, I need to find the indices corresponding to the values 1 and 2. I could do this sequentially as follows:
>> B
B =
1 2 3
4 1 6
7 8 9
...
2
votes
1answer
64 views
Vectorized Reshaping of Columns in an Array
I have an array A, and want to reshape the last four elements of each column into a 2x2 matrix. I would like the results to be stored in a cell array B.
For example, given:
A = [1:6; 3:8; 5:10]';
...
0
votes
1answer
93 views
excessive slowness for image processing (vectorization of nested for loops)
I need help with image processing in Octave. I'm trying to calculate a local "sliding window" ssd on some images. The slowness is excessive (the nested for loops add up to 88*120*41*41 iterations), so ...
8
votes
1answer
214 views
How to Vectorize a Nested Loop
I'm having trouble visualizing how to vectorize this set of loops. Any guidance would be appreciated.
ind_1 = [1,2,3];
ind_2 = [1,2,4];
K = zeros(3,3,3,3,3,3,3,3,3);
pp = rand(4,4,4);
for s = 1:3
...
2
votes
1answer
57 views
Vector of lengths of all elements in a cell array?
I have a cell array containing matrices. I would like to get a 1-D row vector of the lengths of every element in the cell array. Example:
a = {[1, 2], [1, 8], [5, 2, 4]};
% b = ...?
b == [ 2, 2, 3 ]
...
2
votes
3answers
242 views
Vectorize a triangle scan line in MATLAB/Octave
I am new to Octave/MATLAB. I want to vectorize a simple scan-line fill for a triangle. Here is the while loop I want to eliminate:
#Iterate over all the scan lines from bottom to top
while(yCurr ...
2
votes
1answer
70 views
vectorized indexing of matrices with other matrices (in octave)
Suppose we have a 2D (5x5) matrix:
test =
39 13 90 5 71
60 78 38 4 11
87 92 46 45 35
40 96 61 17 1
90 50 46 89 63
And a second 2D (5x2) ...
1
vote
1answer
1k views
Iterating through matrix rows in Octave without using an index or for loop
I am trying to understand if it's possible to use Octave more efficiently by removing the for loop I'm using to calculate a formula on each row of a matrix X:
myscalar = 0
for i = 1:size(X, 1),
...
0
votes
1answer
140 views
Octave vectorize strsplit return value into separate variables
I have a file with a list of records which I parse one line at a time. Each record is newline delimited and each value is space delimited. This isn't the real example, but has a similar structure.
...
1
vote
2answers
255 views
mean of parts of an array in octave
I have two arrays. One is a list of lengths within the other. For example
zarray = [1 2 3 4 5 6 7 8 9 10]
and
lengths = [1 3 2 1 3]
I want to average (mean) over parts the first array with ...
2
votes
1answer
134 views
vectorizing a non-explicit function in Matlab and Octave
I want to vectorize a 3D function, but the function does not have an analytical expression. For instance, I can vectorize the function
F(x, y, z) = (sin(y)*x, z*y, x*y)
by doing something like
...
2
votes
3answers
209 views
How to vectorize row-wise diagonalization of a matrix
I have an n-by-m matrix that I want to convert to a mn-by-m matrix, with each m-by-m block of the result containing the diagonal of each row.
For example, if the input is:
[1 2; 3 4; 5 6]
the ...
1
vote
2answers
326 views
How would you vectorize this nested loop in matlab/octave?
I am stuck at vectorizing this tricky loop in MATLAB/Octave:
[nr, nc] = size(R);
P = rand(nr, K);
Q = rand(K, nc);
for i = 1:nr
for j = 1:nc
if R(i,j) > 0
eij = R(i,j) - ...
4
votes
2answers
729 views
parallelizing vectorized code in Matlab (or Octave)
Vectorized code in Matlab runs much faster than a for loop (see Parallel computing in Octave on a single machine -- package and example for concrete results in Octave)
With that said, is there any ...
1
vote
2answers
151 views
Matrix creation Octave / Matlab, loopless solution request
I want to create a matrix like
A = [0 0 0 0 1;
0 0 0 1 1;
0 0 0 1 1;
0 0 0 1 1;
0 0 1 1 1;
0 1 1 1 1]
based on a vector indicating how many '0's should precede '1's on each ...
4
votes
2answers
2k 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 ...
5
votes
1answer
573 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 = ...
