Tagged Questions
2
votes
3answers
19 views
How to vectorize a sum of dot products between a normal and array of points
I need to evaluate following expression (in pseudo-math notation):
∑ipi⋅n
where p is a matrix of three-element vectors and n is a three-element vector. I can do this with for loops as follows ...
1
vote
2answers
45 views
Extract data from MATLAB matrix without for-loop
In MATLAB, let us say I have a 10 x 100 matrix, called M. What I would like to do, is extract particular indicies of this matrix, and do an operation on them immediately, based on the row index, in a ...
2
votes
2answers
69 views
MATLAB - work directly with indices of a matrix without using a loop
I saw this other question but he's operating only on one index. I need to operate on both column and row indices without using a for loop.
Is there a way to do this:
Let M (a,b) be the matrix and ...
6
votes
1answer
50 views
How to loop a matrix with a window in Matlab
I have a n-by-m matrix in Matlab and I would like to loop the matrix with a window of specific size and then do some calculations (e.g. mean, standard deviation) on the values inside the window. The ...
0
votes
0answers
45 views
MATLAB: How to expand vector to matrix [duplicate]
Recently I'm learning machine learning, using MATLAB to solve problems. I'm curious if there is a simple way to expand a vector like
1
1
1
2
2
3
4
to
1 0 0 0
1 0 0 0
1 0 0 0
0 1 0 0
0 1 0 0
0 0 ...
3
votes
3answers
59 views
Blockwise sum of matrix elements
I want to go from something like this:
1> a = matrix(c(1,4,2,5,2,5,2,1,4,4,3,2,1,6,7,4),4)
1> a
[,1] [,2] [,3] [,4]
[1,] 1 2 4 1
[2,] 4 5 4 6
[3,] 2 2 3 ...
0
votes
1answer
48 views
How do I find the indices of the elements of one vector in a matrix in Matlab?
Suppose I have a 9x9 matrix A that that consists of integers. I have another matrix IDX that's 2500x4 and consists of the same integers in A. I want to find the indices of all the values in IDX in the ...
0
votes
2answers
27 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 ...
5
votes
1answer
99 views
MATLAB: Create a block diagonal matrix with same repeating block
I have a matrix K of dimensions n x n. I want to create a new block diagonal matrix M of dimensions N x N, such that it contains d blocks of matrix K as its diagonal.
I would have directly used M = ...
0
votes
2answers
71 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)
...
2
votes
2answers
74 views
How can I vectorize this for loop in Matlab?
I wrote a code that generates a vector of increasing length, that is later stacked in a matrix row after row. This is a sample of how the code works
PPR=[0 2 3 5 6 8];
...
0
votes
2answers
87 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 ...
0
votes
1answer
47 views
effective way of transformation from 2D to 1D vector
i want to create 1D vector in matlab from given matrix,for this i have implemented following algorithm ,which use trivial way
% create one dimensional vector from 2D matrix
function ...
3
votes
2answers
92 views
create matrix with row length L from 1D vector
suppose that we have following 1D array
x(1),x(2),......x(n)
where n is length of sample,and suppose that we want create matrix consisting from this elements using following rule,using some ...
0
votes
3answers
133 views
2d matrix to a 3d matrix without using a loop
I have a 300x300 matrix. I need to make a 300x300x1024 matrix where each "slice" is the original 300x300 matrix. Is there any way to do this without a loop? I tried the following:
old=G;
for j=2:N;
...
0
votes
1answer
108 views
R assign several list elements the same object
I currently have a loop - well actually a loop in loop, in a simulation model which gets slow with larger numbers of individuals. I've vectorised most of it and made it a heck of a lot faster. But ...
1
vote
1answer
170 views
MATLAB how to vectorize this while loop
so the idea here is to read data into a matrix, and then make that matrix a square matrix by removing the excess column(s) or row(s), but vectorized, without using any loops at all and without using ...
3
votes
4answers
130 views
Fastest way to find rows without NaNs in Matlab
I would like to find the indexes of rows without any NaN in the fastest way possible since I need to do it thousands of times. So far I have tried the following two approaches:
find(~isnan(sum(data, ...
3
votes
1answer
79 views
How may I use cellfun or arrayfun in place of this loop?
I implemented the following function in Matlab.
function [x y] = cloud(a,b,phi,x0,y0,N)
phi=phi*2*pi/360;
m=ceil(5*N/pi);
x=a*(-1+2*rand(m,1));
y=b*(-1+2*rand(m,1));
f=sqrt(a^2 - b^2);
...
3
votes
1answer
62 views
How to double the size of a matrix and propagate its elements in Matlab?
suppose I have a matrix like this:
a =
1 2
3 4
I want to double the size of matrix and create something like this:
aa =
1 1 2 2
1 1 2 2
3 3 4 ...
3
votes
1answer
46 views
A matrix operation in MATLAB
I am trying to simplify my code a bit, and I am across a small question. Let
v = [1; 2; 3];
a1 = [4; 5; 6];
a2 = [7; 8; 9];
A = [a1, a2];
I am aiming to compute
u = [v.*a1, v.*a2]
by only ...
3
votes
2answers
85 views
Intersection indices by rows
Given these two matrices:
m1 = [ 1 1;
2 2;
3 3;
4 4;
5 5 ];
m2 = [ 4 2;
1 1;
4 4;
7 5 ];
I'm looking for a function, such as:
indices = ...
4
votes
1answer
162 views
construct a binary matrix such that each column contains only single “1” and sum of each row is of desired value
I want to construct a binary(0s and 1s) matrix satisfying the following constraints:
Each column must contains only single binary 1 and rest elements of that column are 0s.
The sum of each ROW of ...
1
vote
6answers
245 views
Need to create a matrix with specific elements using only one command
I need to create the following matrix using only a single command without typing it out explicitly:
M = [0 0 0 0 0 0;...
0 0 0 0 0 0;...
0 0 0 0 0 0;...
0 0 0 1 2 3;...
0 0 0 4 5 ...
7
votes
5answers
150 views
Taking the max of contiguous matrix chunks in MATLAB
Given the matrix:
a =
1 1 2 2
1 1 2 2
3 3 4 4
3 3 4 4
I would like to get the following four 2x2 matrices:
a1 =
1 1
1 1
a2 =
2 2
2 2
a3 =
...
-2
votes
2answers
109 views
Improve Performance of Matlab Function
I would like to improve one of my simple matlab functions.
Is there any arithmetic way to implement this function? I think that would perform much better.
function img_output = cutchannels(img_input, ...
4
votes
4answers
308 views
Create matrix by repeatedly overlapping a vector
I'm having great difficulty coding the following in MATLAB:
Suppose you have the following vector:
a
b
c
d
e
f
g
h
...
Specifying an (even) window size, create the following matrix of dimensions ...
2
votes
1answer
211 views
Multiply each column of a matrix by another matrix
I have a M x N matrix. I want to multiply each of the N columns by a M x M matrix. The following does this in a loop, but I have no idea how to vectorize it.
u=repmat(sin(2*pi*f*t),[n 1]);
W = ...
2
votes
1answer
138 views
How could I apply an IF statement to all rows of a matrix (Matlab)
I am looking to apply an IF statement to a matrix like the following:
A =
2 5 2 4 8
2 5 0 0 0
2 4 0 0 0
6 8 0 0 0
9 5 0 ...
2
votes
1answer
72 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) ...
0
votes
1answer
200 views
R apply function to selected pairs or rows
I have a matrix M and a matrix L that contains 'pair of rows indexes' that i need to select in M, in order to apply a function. The function returns a matrix with 2 rows and the same number of columns ...
0
votes
1answer
175 views
How do I compute the sum of the outer products of all columns of a matrix in MATLAB without loops?
I tried to make the title say it all.
I have a matrix and I need to computer the sum of the outer products of combinations of columns. I know how to do it with for-loops. But, is there a vectorized ...
4
votes
1answer
69 views
Is there a better vectorization technique than this?
I am trying to see if there are other ways of coding this code sample more efficiently. Here, y is an 1xM matrix, (say, 1x1000), and z is an NxM matrix, (say, 5x1000).
mean(ones(N,1)*y.^3 .* z,2)
...
2
votes
1answer
185 views
Vectorize matrix operation in R
I have a R x C matrix filled to the k-th row and empty below this row. What i need to do is to fill the remaining rows. In order to do this, i have a function that takes 2 entire rows as arguments, ...
2
votes
2answers
133 views
denormalize matrix in R
I have a N x K matrix in R, where each row is a observation and each column is a variable that has a fixed lower and upper bound.
My matrix is initially set with values between 0 and 1. What's the ...
1
vote
4answers
56 views
Incrementing column i in row A(i) of B
Is there a better way to do this for-loop?
for i = find(A > 42)
B(A(i), i) = B(A(i), i) + 1;
end
A is an integer array. B is a max(A)×length(A) matrix.
Example:
A = reshape(magic(3), 1, ...
2
votes
3answers
213 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
3answers
405 views
z score with nan values in matlab (vectorized)
I am trying to calculate the zscore for a vector of 5000 rows which has many nan values. I have to calculate this many times so I dont want to use a loop, I was hoping to find a vectorized solution.
...
2
votes
4answers
1k views
MATLAB Expanding A Matrix with Zeros
I'm working on one of my course projects, and I need a matrix of nxn, where the first pxp of it contains ones and rest are zeros. I can do it with traversing the cells, so I'm not asking a way to do ...
1
vote
2answers
156 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 ...
2
votes
1answer
252 views
Vectorize function to avoid loop
I'm trying to speed up my code because it's running very long. I already found out where the problem lies. Consider the following example:
x<-c((2+2i),(3+1i),(4+1i),(5+3i),(6+2i),(7+2i))
...
3
votes
1answer
246 views
Is there a way to vectorize the use of squeeze in Matlab?
I am currently using squeeze to remove two singleton dimensions from a matrix. The matrix is a large 4d matrix M(:,:,:,:). The first two dimensions are row and column coordinates (y and x). The ...
2
votes
1answer
462 views
Summation without a for loop [Matlab]
I have 2 matrices: V which is square MxM, and K which is MxN. Calling the dimension across rows x and the dimension across columns t, I need to evaluate the integral (i.e sum) over both dimensions of ...
2
votes
2answers
1k views
Create a lower triangular matrix from a given vector
My problem is the following: I have a vector as
[3,4,5,6,7]
I want to create a matrix as
3 0 0 0 0
3 4 0 0 0
3 4 5 0 0
3 4 5 6 0
3 4 5 6 7
However, I don't want to use for ...
1
vote
1answer
879 views
Remove the minimum values per each column of a Matrix
If I had a matrix A such as:
63 55 85 21 71
80 65 85 48 53
55 60 93 71 66
21 65 40 33 21
61 90 80 48 50
... and so on how would I find ...
2
votes
2answers
158 views
Flattening a matrix in MATLAB with indexes
I have a matrix X e.g = [a b; c d; e f].
I need to create another matrix listing the index positions and values of the matrix.
e.g. The output is E = [ 1 1 a ; 1 2 b ; 2 1 c ; 2 2 d ; 3 1 e ; 3 2 f ...
0
votes
1answer
75 views
Vectorize the sum of unique columns
There are multiple occurrence of same combination of values in different rows of matlab, for example 1 1 in first and second row. I want to remove all those duplicates but adding the values in third ...
0
votes
2answers
288 views
Regression in R using vectorization and matrices
I have a vectorization Q in R using matrices. I have 2 Cols that need to be regressed against each using certain indices. Data is
matrix_senttoR = [ ...
0.11 0.95
...
1
vote
3answers
709 views
Matlab: Search rows in matrix with fixed first and last element with vectorization
I have a matrix like the following (arbitrary cols/rows):
1 0 0 0 0
1 2 0 0 0
1 2 3 0 0
1 2 3 4 0
1 2 3 4 5
1 2 5 0 0
1 2 ...
1
vote
2answers
2k views
MATLAB: Remove n last rows from matrix without loop
I have a problem with removing surplus rows in the end of the matrix. In general, I need to remove rows that contain a specific elements in a specific column, without using a loop. It seems easy but I ...

