Tagged Questions
Questions relating to sparse matrix algorithms and data structures, along with questions about implementation and analyses.
42
votes
5answers
882 views
Optimising Python dictionary access code
Question:
I've profiled my Python program to death, and there is one function that is slowing everything down. It uses Python dictionaries heavily, so I may not have used them in the best way. If I ...
21
votes
9answers
9k views
Sparse matrices / arrays in Java
I'm working on a project, written in Java, which requires that I build a very large 2-D sparse array. Very sparse, if that makes a difference. Anyway: the most crucial aspect for this application is ...
16
votes
7answers
1k views
How to speed up my sparse matrix solver?
I'm writing a sparse matrix solver using the Gauss-Seidel method. By profiling, I've determined that about half of my program's time is spent inside the solver. The performance-critical part is as ...
12
votes
1answer
263 views
sparse 3d matrix/array in Python?
In scipy, we can construct a sparse matrix using scipy.sparse.lil_matrix() etc. But the matrix is in 2d.
I am wondering if there is an existing data structure for sparse 3d matrix / array (tensor) in ...
11
votes
4answers
307 views
Sparse Matrix Libraries for Ruby
I'm looking for a Sparse Matrix library I can use from Ruby. I'm currently using the GNU Scientific Library bindings provided by the "gsl" gem, but my application would be better optimized if I used a ...
11
votes
14answers
531 views
How to efficiently store a matrix with highly-redundant values
I have a very large matrix (100M rows by 100M columns) that has a lots of duplicate values right next to each other. For example:
8 8 8 8 8 8 8 8 8 8 8 8 8
8 4 8 8 1 1 1 1 1 8 8 8 8
8 4 8 8 1 1 1 1 ...
11
votes
6answers
4k views
How expensive is it to compute the eigenvalues of a matrix?
How expensive is it to compute the eigenvalues of a matrix?
What is the complexity of the best algorithms?
How long might it take in practice if I have a 1000x1000 matrix? I assume it helps if the ...
8
votes
3answers
2k views
Scipy sparse… arrays?
So, I'm doing some Kmeans classification using numpy arrays that are quite sparse-- lots and lots of zeroes. I figured that I'd use scipy's 'sparse' package to reduce the storage overhead, but I'm a ...
8
votes
4answers
2k views
Most mature sparse matrix package for R?
There are at least two sparse matrix packages for R. I'm looking into these because I'm working with datasets that are too big and sparse to fit in memory with a dense representation. I want basic ...
8
votes
8answers
3k views
Matrix Library for .NET
I'm looking for a good (well-tested, fully-featured, and ideally with a nice interface) matrix library for .NET/C#. My main requirements here are only that it should be free (I don't particularly care ...
7
votes
1answer
193 views
Parallelize Solve() for Ax=b?
Crossposted with STATS.se since this problem could straddle both STATs.se/SO
http://stats.stackexchange.com/questions/17712/parallelize-solve-for-ax-b
I have some extremely large sparse matrices ...
7
votes
2answers
209 views
Sparse matrix class with parameterizable “zero”
I am doing some computations on a sparse matrix of floats in the log domain, so the "empty" entries are actually -Inf (using -FLT_MAX). I'm using a custom sparse matrix class right now but I am eager ...
7
votes
3answers
557 views
Computing sparse pairwise distance matrix in R
I have a NxM matrix and I want to compute the NxN matrix of Euclidean distances between the M points. In my problem, N is about 100,000. As I plan to use this matrix for a k-nearest neighbor ...
7
votes
3answers
273 views
Is there any efficient way to dynamically change the compress_matrix in boost?
I am using ublas::Compressed Matrix to work with UMFPACK, a sparse linear solver. Since I am doing a simulation, so every time the linear system is constructed slightly differently that might involve ...
7
votes
2answers
209 views
Sparse vs Normal Array Matlab
In Matlab, at what point is having a sparse array better than a normal array if I still have a lot of calculations to do on it, and about 25% of the array are non-zeros?
7
votes
3answers
1k views
How to elementwise-multiply a scipy.sparse matrix by a broadcasted dense 1d array?
Suppose I have a 2d sparse array. In my real usecase both the number of rows and columns are much bigger (say 20000 and 50000) hence it cannot fit in memory when a dense representation is used:
...
7
votes
3answers
1k views
Are there any storage optimized Sparse Matrix implementations in C#?
Are there any storage optimized Sparse Matrix implementations in C#?
6
votes
2answers
115 views
Efficient structure for element wise access to very large sparse matrix (Python/Cython)
I'm looking for an efficient data structure to represent a very large matrix of integers in Python/Cython with focus on element-wise operations.
I'm currently building a model that requires a lot of ...
6
votes
2answers
238 views
Pros and cons to using sparse matrices in python/R?
I'm working with large, sparse matrices (document-feature matrices generated from text) in python. It's taking quite a bit of processing time and memory to chew through these, and I imagine that ...
6
votes
2answers
812 views
k-means clustering in R on very large, sparse matrix?
I am trying to do some k-means clustering on a very large matrix.
The matrix is approximately 500000 rows x 4000 cols yet very sparse (only a couple of "1" values per row).
The whole thing does not ...
6
votes
2answers
524 views
another Game of Life question (infinite grid)?
I have been playing around with Conway's Game of life and recently discovered some amazingly fast implementations such as Hashlife and Golly. (download Golly here - http://golly.sourceforge.net/)
One ...
6
votes
4answers
2k views
Find the “largest” dense sub matrix in a large sparse matrix
Given a large sparse matrix (say 10k+ by 1M+) I need to find a subset, not necessarily continuous, of the rows and columns that form a dense matrix (all non-zero elements). I want this sub matrix to ...
6
votes
3answers
2k views
Data Structure for Storing Sparse Matrices
I need to do some mathematics operations on sparse matrices. I noticed that using arrays may not be the most efficient way to utilize my memory, especially since the matrices may have over 200 rows. I ...
5
votes
2answers
146 views
Algorithm for quadratic form matrix multiplication with sparse Matrix
I am optimizing code which heavily relies on a custom made Matrix library (which won't be excluded from the project because it is everywhere. This is not nice, but it's a fact...) Many calculations ...
5
votes
2answers
199 views
How can I efficiently initialize this sparse array in Mathematica?
I'm trying to solve a rather large linear programming problem in Mathematica, but for some reason the bottleneck is setting up the array of linear constraints.
My code for initializing the matrix ...
5
votes
2answers
109 views
efficient computation of Trace(AB^{-1}) given A and B
I have two square matrices A and B. A is symmetric, B is symmetric positive definite. I would like to compute $trace(A.B^{-1})$. For now, I compute the Cholesky decomposition of B, solve for C in the ...
5
votes
3answers
175 views
Adding values to a matrix using index vectors that include row and column names
Suppose I have a really big matrix of sparse data, but i'm only interested in looking at a sample of it making it even more sparse. Suppose I also have a dataframe of triples including columns for ...
5
votes
1answer
180 views
Does Incanter have support for sparse matrices?
Does Incanter have support for sparse matrices (multiplication, decomposition, solving)?
5
votes
3answers
317 views
Python - efficient representation of pixels and associated values
I'm using python to work with large-ish (approx 2000 x 2000) matrices, where each I, J point in the matrix represents a single pixel.
The matrices themselves are sparse (ie a substantial portion of ...
5
votes
2answers
507 views
Converting coefficient names to a formula in R
When using formulas that have factors, the fitted models name the coefficients XY, where X is the name of the factor and Y is a particular level of it. I want to be able to create a formula from the ...
5
votes
1answer
421 views
Any Sparse Linear Algebra package in Haskell?
Is there any package to perform Sparse Linear Algebra computations, maybe based on fast and efficient C libraries? I searched on Hackage but I didn't find anything at regard: hmatrix, which uses GSL, ...
5
votes
2answers
358 views
Why does the speed of this SOR solver depend on the input?
Related to my other question, I have now modified the sparse matrix solver to use the SOR (Successive Over-Relaxation) method. The code is now as follows:
void SORSolver::step() {
float const ...
5
votes
3answers
457 views
Sparse Multidimensional Array or Matrix Libraries in .NET
I have a need for a sparse matrix in up to 4 dimensions in a .NET application. The size of the matrix (if represented as a .NET Array) would potentially top 400MB.
The array is likely to be very ...
5
votes
6answers
1k views
Best way to store a sparse matrix in .NET
We have an application that stores a sparse matrix. This matrix has entries that mostly exist around the main diagonal of the matrix. I was wondering if there were any efficient algorithms (or ...
4
votes
2answers
57 views
Reference for lowest order complexity of sparse symmetric matrix premultiplying full vector
In a paper I'm writing I make use of an n x n matrix multiplying a dense vector of dimension n. In its natural form, this matrix has O(n^2) space complexity and the multiplication takes time O(n^2).
...
4
votes
6answers
256 views
How to find indices of non zero elements in large sparse matrix?
i have two sq matrix (a, b) of size in order of 100000 X 100000. I have to take difference of these two matrix (c = a-b). Resultant matrix 'c' is a sparse matrix. I want to find the indices of all ...
4
votes
1answer
281 views
Element-wise power of scipy.sparse matrix
How to I raise a scipy.sparse matrix to a power, element-wise? numpy.power should, according to its manual, do this, but it fails on sparse matrices:
>>> X
<1353x32100 sparse matrix of ...
4
votes
3answers
88 views
R dichotomize sparse matrix
I have a large 500x53380 sparse matrix and trying to dichotomize it. I have tried using "event2dichot" under sna package but no success because it requires an adjacency matrix or network object.
I ...
4
votes
2answers
615 views
SVD for sparse matrix in R
I've got a sparse Matrix in R that's apparently too big for me to run as.matrix() on (though it's not super-huge either). The as.matrix() call in question is inside the svd() function, so I'm ...
4
votes
2answers
336 views
Sparse array support in HDF5
I need to store a 512^3 array on disk in some way and I'm currently using HDF5. Since the array is sparse a lot of disk space gets wasted.
Does HDF5 provide any support for sparse array ?
4
votes
3answers
1k views
sparse matrix svd in python
Does anyone know how to perform svd operation on a sparse matrix in python? It seems that there is no such functionality provided in scipy.sparse.linalg.
4
votes
5answers
690 views
General sparse iterative solver libraries
What are some of the better libraries for large sparse iterative (conjugate gradient, MINRES, GMRES, etc.) linear algebra system solving? I've often coded my own routines, but I'm interested to know ...
3
votes
3answers
45 views
How to create a binary matrix of inventory per row? (R)
I have a dataframe of 9 columns consisting of an inventory of factors. Each row can have all 9 columns filled (as in that row is holding 9 "things"), but most don't (most have between 3-4). The ...
3
votes
1answer
45 views
Is bsxfun usable with sparse matrices
I want to a element-by-element binary operation apply to large logical vectors. The content of these vectors is manly false, so for performance considerations it better to work with sparse matrices. ...
3
votes
3answers
93 views
Loading Matlab sparse matrix saved with -v7.3 (HDF5) into Python and operating on it
I'm new to python, coming from matlab. I have a large sparse matrix saved in matlab v7.3 (HDF5) format. I've so far found two ways of loading in the file, using h5py and tables. However operating on ...
3
votes
1answer
111 views
Create a sparse diagonal matrix from row of a sparse matrix
I process rather large matrices in Python/Scipy. I need to extract rows from large matrix (which is loaded to coo_matrix) and use them as diagonal elements. Currently I do that in the following ...
3
votes
2answers
80 views
Database to store sparse matrix
I have a very large and very sparse matrix, composed of only 0s and 1s. I then basically handle (row-column) pairs. I have at most 10k pairs per row/column.
My needs are the following:
Parallel ...
3
votes
1answer
67 views
Matlab sparse tensor
Does Matlab support efficient operations on large sparse tensors?
More specifically:
Is there an elegant way, similar to sparse, of loading and storing a sparse tensor? As far as I can understand, ...
3
votes
1answer
113 views
Tabulations and insertions with data.table
I am trying to take a very large set of records with multiple indices, calculate an aggregate statistic on groups determined by a subset of the indices, and then insert that into every row in the ...
3
votes
2answers
125 views
performing sum of outer products on sparse matrices
I am trying to implement the following equation using scipy's sparse package:
W = x[:,1] * y[:,1].T + x[:,2] * y[:,2].T + ...
where x & y are a nxm csc_matrix. Basically I'm trying to multiply ...