Sparse Matrix Gather Operation

An implementation of something similar to BLAS gather (where sparse() is similar to scatter)

Vous suivez désormais cette soumission

If

S=sparse(I,J,V);

then this function is the "inverse" of sparse, in the sense that

V=gather(S,I,J);

For small matrices, an equivalent (and more efficient) version is

S(sub2ind(size(S),I,J));

This version breaks down for matrices for which prod(size) is bigger than 2^31 or so. For square matrices, this limits the size to about 30,000 by 30,000. For purposes such as finite elements, a 30,000 by 30,000 sparse matrix is actually small. The gather operation is mostly not needed except in the mesh subdivision routine, which needs to be able to look up pairs of vertices in a sparse matrix to recover an edge identifier (so that these edges can be subdivided.)

In this situation, for large meshes, the only way I found of not overflowing the 31 bit integers is to use this implementation of the gather operation.

The performance is reasonably good. Because one is reading from a sparse matrix, each access can be expected to take log(n) time (n=size(S,1)). For m accesses, the running time should therefore be mlogn. The associated screenshot is a performance measurement. The running time is measured by

ij=floor(rand(2*n,2)*n+1);
S=sparse(ij(:,1),ij(:,2),round(rand(2*n,1)*n),n,n);
tic;
gather(S,ij(:,1),ij(:,2));
t=toc

The measurement is compared to nlogn/5e5. The two curves are very close, so this algorithm is sound.

Citation pour cette source

Sébastien Loisel (2026). Sparse Matrix Gather Operation (https://fr.mathworks.com/matlabcentral/fileexchange/13901-sparse-matrix-gather-operation), MATLAB Central File Exchange. Extrait(e) le .

Catégories

En savoir plus sur Sparse Matrices dans Help Center et MATLAB Answers

Informations générales

Compatibilité avec les versions de MATLAB

  • Compatible avec toutes les versions

Plateformes compatibles

  • Windows
  • macOS
  • Linux
Version Publié le Notes de version Action
1.0.0.0

Corrected code in description. This includes the changes I made in the previous update.