Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm running the following code, where M is a ~200,000 by ~200,000 sparse matrix and points is ~200,000 by 2 matrix

inds=sub2ind(size(M),points(:,1),points(:,2));
M(inds)=M(inds)+1;

the problem is that the second line takes very long to run (15-90 seconds). the operation takes longer depending on how many of the indices in inds are 'new' (i.e. that don't already have a value in the sparse matrix)

is there a more efficient way to do this?

share|improve this question

1 Answer

up vote 4 down vote accepted

Here's an idea:

M = M + sparse(points(:,1),points(:,2),1,size(M,1),size(M,2),size(points,1));

Just so you know,

S = sparse(i,j,s,m,n,nzmax) uses vectors i, j, and s to generate an m-by-n sparse matrix such that S(i(k),j(k)) = s(k), with space allocated for nzmax nonzeros. Vectors i, j, and s are all the same length. Any elements of s that are zero are ignored, along with the corresponding values of i and j. Any elements of s that have duplicate values of i and j are added together.

For the curious:

M = sprand(200000,200000,1e-6);
points = [randperm(200000) ; randperm(200000)]'; %'//Initialization over
Mo = M;
tic; 
inds=sub2ind(size(Mo),points(:,1),points(:,2));
Mo(inds) = Mo(inds)+1;
toc
tic; 
M = M + sparse(points(:,1),points(:,2),1,size(M,1),size(M,2),size(points,1));
toc
share|improve this answer
1  
works perfectly, thanks. – pseudoDust Oct 7 '12 at 0:58
1  
@pseudoDust, how faster did it become? – Andrey Oct 8 '12 at 14:09
@Andrey: You can test it for yourself with the demo code I added – Jacob Oct 8 '12 at 14:57
1  
@Andrey: orders of magnitude faster, it becomes insignificant, about 40 ms... – pseudoDust Oct 9 '12 at 12:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.