Questions relating to sparse matrix algorithms and data structures, along with questions about implementation and analyses.

learn more… | top users | synonyms

1
vote
1answer
30 views

Linear Independence of Large Sparse Matrices in R

I have three large matrices: I, G, and G^2. These are 4Million x 4Million matrices and they are sparse. I would like to check if they are linearly independent and I would like to do this in R. For ...
0
votes
1answer
14 views

Tansition from ejml to library with sparse matrices

How can i easily make a transition from ejml to another library that supports sparse matrices?
2
votes
1answer
33 views

Solver for sparse linearly-constrained non-linear least-squares

Are there any algorithms or solvers for solving non-linear least-squares problems where the jacobian is known to always be sparse, and the solution is constrained with either: Linear equality ...
1
vote
1answer
46 views

Reshape sparse matrix efficiently, Python, SciPy 0.12

In another post regarding resizing of a sparse matrix in SciPy the accepted answer works when more rows or columns are to be added, using scipy.sparse.vstack or hstack, respectively. In SciPy 0.12 the ...
4
votes
2answers
105 views

Speed up sparse matrix calculations

Is it possible to speed up large sparse matrix calculations by e.g. placing parantheses optimally? What I'm asking is: Can I speed up the following code by forcing Matlab to do the operations in a ...
0
votes
0answers
13 views

LU decomposition of a CSR matrix

I store a sparse matrix A in Compressed Sparse Row format (CSR). I would like to compute the LU decomposition of A. Common algorithms are not very efficient since they must loop on all coefficients of ...
0
votes
1answer
41 views

Automated sparse matricies in Fortran

I know that Intel Fortran has libraries with functions and subroutines for working with sparse matricies, but I'm wondering if there is also some sort of data type or automated method for creating the ...
2
votes
1answer
41 views

Create a very large Sparse Matrix in R

I am trying to create a large sparse matrix, 10^5 by 10^5 in R, but am running into memory issues. > Matrix(nrow=1e5,ncol=1e5,sparse=TRUE) Error in Matrix(nrow = 1e+05, ncol = 1e+05, sparse = ...
0
votes
2answers
29 views

how to get the none zero indexes of a sparseMatrix? [duplicate]

Given a Matrix M: M <- Matrix(c(1,0,0,0,0,1,0,0,0), nrow=3, sparse=T) M 3 x 3 sparse Matrix of class "dtCMatrix" [1,] 1 . . [2,] . . . [3,] . 1 . how can I extract a list of indexed wich point ...
1
vote
1answer
67 views

Can import sparse matrix to do association rule in R?

I have never use R ,but now I need import a sparse matrix to do association rule in R My import data is a sparse matrix like this:        i   j   x 1       2   3   1 2       3   5   1 3    ...
0
votes
1answer
36 views

How to Store Histogram Values using SparseMat on OpenCV

Calculating and storing the dense histogram matrix for my image processing operations is inefficient. ( there is no many differences on the image's color ) For the sake of efficiency, I want to use a ...
0
votes
1answer
46 views

Find indexes of arrayes of values in matrix and replace them with new value

I have a huge sparse matrix for ex A with n*n size , I want to find indexes of an array B (1*m size) of some values from the huge matrix and replace this values with one value such as x ? I don't want ...
0
votes
2answers
72 views

How to avoid a for-loop in MATLAB, when performing a operation on each row in a very large matrix?

I am using MATLAB. I have very large sparse matrices, and I want to perform a logical or bsxfun on each column of this matrix. There is a single for loop where in it is a single operation of logical ...
4
votes
5answers
120 views

How do you represent large matrices from your algorithm to aid you when debugging?

The basic approach to this is printing the matrices. But when you get to bigger numbers, even though you're debugging (the algorithm might not work for 2 by 2 or 4 by 4 matrices), it starts to get ...
0
votes
2answers
70 views

Large SpMat object with RcppArmadillo

I am trying to learn and use Rcpp and RcppArmadillo for the sparse linear algebra routines. Code below is adaptation of the example here: http://gallery.rcpp.org/articles/armadillo-sparse-matrix/ ...
1
vote
2answers
79 views

Store and retrieve large sparse matrix

I have a fairly large sparse matrix that, I reckon, would occupy 1Gb when loaded into memory. I don't need access to the whole matrix at all times, so some kind of memory mapping would work; it ...
1
vote
1answer
83 views

Translate matlab code to python (scipy)

I' trying to translate this matlab code to python: T = length(z); lambda = 10; I = speye(T) D2 = spdiags(ones(T-2,1)*[1 -2 1],[0:2],T-2,T); z_stat = (I-inv(I + lambda^2*D2'*D2))*z; What I got at ...
2
votes
1answer
61 views

How to Extend Scipy Sparse Matrix returned by sklearn TfIdfVectorizer to hold more features

I am working on a text classification problem using scikit-learn classifiers and text feature extractor, particularly TfidfVectorizer class. The problem is that I have two kinds of features, the ...
0
votes
1answer
60 views

Sparse Matrix as input to Hierarchical clustering in R

I have a question about clustering using a distance matrix, but sparse. Is there a sparse distance object format that does not expand the matrix and can work with the sparse representation? ...
1
vote
1answer
75 views

How to change elements in sparse matrix in Python's SciPy?

I have built a small code that I want to use for solving eigenvalue problems involving large sparse matrices. It's working fine, all I want to do now is to set some elements in the sparse matrix to ...
2
votes
2answers
63 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)?
8
votes
3answers
62 views

How to convert a sparse matrix into a matrix of index and value of non-zero element

We can construct a sparse matrix from an index and value of non-zero element with the sparseMatrix or spMatrix. Is there any function convert a sparse matrix back to an index and value of all non-zero ...
0
votes
1answer
48 views

Changing display of spy in Matlab

I'm trying to get different elements of a sparse matrix to be different colors (filled in), but it doesn't seem to work with black. But even if I change out black to a different color, I get a weird ...
1
vote
1answer
37 views

Getting different colors for different numbers using `spy` in Matlab

When I use spy to check a sparsity pattern, it doesn't distinguish certain elements from others. Is there any way to do this? Say, for example, elements that are equal to 10 are red and all elements ...
4
votes
1answer
113 views

MATLAB, how to compute the distances between large coordinate sets, without exceeding memory constraints?

(using MATLAB) I have a large coordinate matrix and a large sparse adjacency matrix for which coordinates are connected to each other. I had asked previously on SO, how to efficiently compute these ...
0
votes
0answers
36 views

OpenCV: how to check if element exists in SparseMat

I am using a SparseMat of CV_32FC3 and am trying to do the following: int dims = 2; int size[] = {10,10}; SparseMat m = SparseMat(dims, size, CV_32FC3); m.ref<Vec3f>(2,5)[0] = 0.5; ...
3
votes
0answers
48 views

Scipy sparse matrices - purpose and usage of different implementations

Scipy has many different types of sparse matrices available. What are the most important differences between these types, and what is the difference in their intended usage? I'm developing a code ...
1
vote
1answer
507 views

Fast sparse matrix multiplication

for class I have to write my own linear equation solver for sparse matrices. I am free to use any type of data structure for sparse matrices and I have to implement several solves, including ...
2
votes
2answers
278 views

How to optimize Gauss-Seidel routine in C++ for sparse matrices?

I've written a routine in C++ that solves the system of equations Ax = b using Gauss-Seidel method. However, I want to use this code for specific "A" matrices that are sparse (most of the elements are ...
0
votes
0answers
51 views

Gnuplot sparse matrix display

I have a program that generates Gnuplot scripts to display the pattern of a Jacobian matrix. For a dense matrix, I obtain that kind of code which does exactly what I want: set terminal wxt persist ...
1
vote
1answer
65 views

Matlab eigs fail with large matrix

In matlab, I use function 'eigs()' to get a few (about 10) of the smallest eigen vectors of a large matrix (5000x5000). Like this: [V,UU] = eigs(A, 10,'sm'); After some trying, I found that the ...
1
vote
1answer
68 views

How to speed up sklearn SVR?

I am implementing SVR using sklearn svr package in python. My sparse matrix is of size 146860 x 10202. I have divided it into various sub-matrices of size 2500 x 10202. For each sub matrix, SVR ...
0
votes
1answer
52 views

What sparse solver supports diagonal storage format

I'm writing finite-difference method program using C. The stiffness matrix is symmetrical and band. For its storage I'd like to use Sparse Diagonal Storage format. Could someone tell please, what ...
0
votes
1answer
83 views

c++ - use boost to build and access values in a sparse matrix

I have a program that is reading in data in the format: Row Column Value 1 1 4 1 3 5 2 1 6 ... where the first two columns refer to the indices of a ...
0
votes
1answer
45 views

Looking up values in a CRS sparse matrix?

I am new to the use of sparse matrices, but now need to utilize one in my work to save space. I understand that the following matrix: 10 0 0 0 -2 0 3 9 0 0 0 3 0 7 ...
0
votes
1answer
136 views

How to convert sparse matrix to dense matrix in Eigen

Is there some easy and fast way to convert a sparse matrix to a dense matrix of doubles? Because my SparseMatrix is not sparse any more, but became dense after some matrix products. Another question ...
1
vote
2answers
154 views

MATLAB - efficient way of computing distances between points in a graph/network using the adjacency matrix and coordinates

I have the network representation in a 2D coordinate space. I have an adjacency matrix Adj(which is sparse) and a coordinate matrix with the x,y values of all the points/nodes/vertices in the graph ...
1
vote
1answer
93 views

How to Efficiently Combine Sparse Matrices Vertically

My goal is to combine many sparse matrices together to form one large sparse matrix. The only two ideas I've been able to think of are (1) create a large sparse matrix and overwrite certain blocks, ...
0
votes
0answers
24 views

splitting my main class into smaller methods and pass command line arguements

i've never been good at making methods, always end up writing everything in the main class. I never know when to use public, private, void or int etc. Here i have some extract of my code that creates ...
1
vote
1answer
104 views

Manipulating sparse matrices in Matlab

Suppose I have a sparse matrix Sparstica that is a vertical concatenation of several other sparse matrices. When I type Sparstica(:), I get a list of the nonzero elements. In the left column, will be ...
2
votes
1answer
115 views

c++ - looking up sparse matrix values without loops

I have a C++ program that is expecting an input file in the format: X Y Z 1 1 .642 1.1 1 .482 1.2 1 .394 1.3 1 .420 1.4 1 .948 The text file is very long - roughly ...
1
vote
1answer
94 views

Recommendation system with large amount of data

I'm implementing a movie recommendation system with real user data. I planned to take the collaborative filtering method. However, this kind of methods usually involve a huge matrix storing the users ...
0
votes
3answers
71 views

Global Java array setting values to 0

I've a slight problem. I'm taking every element in a sparse matrix and putting it into a 1d array named 'b[]'. For example: 00070 00400 02000 00050 10000 Becomes: 0007000400020000005010000 The ...
0
votes
3answers
155 views

Implementation of Sparse Matrix based on standard Stack generates compile errors

I am implementing a sparse matrix based on the Stack class, and I'm getting the following error: Sparse.java:6: Sparse is not abstract and does not override abstract method pop() in Stack ...
1
vote
1answer
75 views

Density of Mahout SparseMatrix

A short and simple question about Mahout's SparseMatrix class: Is there an easy (already available via Mahout) way to calculate the density of a sparse matrix? I ask this because I have a label ...
0
votes
0answers
87 views

Solving Linear System using COLT in Java

I want to solve a linear system. My matrix A is 1200x1200 in dimension and matrix b is 1200x1. So by the formula Ax = b, I want to find x which will be 1200x1. Now my main concern is my matrix A has ...
-1
votes
3answers
173 views

transpose of a sparse matrix in c++ [closed]

i am very new to c++ here i am trying to find out transpose of a sparse matrix here is the code: #include<iostream> using namespace std; class transposeM{ int ...
2
votes
2answers
118 views

Rearrange sparse arrays by swapping rows and columns

I have large but sparse arrays and I want to rearrange them by swapping rows an columns. What is a good way to do this in scipy.sparse? Some issues I don't think that permutation matrices are well ...
3
votes
3answers
115 views

3D Array vs Sparse Matrix for Sparse Data

I am building a simple model of the Milky Way and one of the things I need to store is a 3D grid of mass densities. The problem is that if I put a rectangular box around the galaxy, most of the grid ...
0
votes
1answer
87 views

How do I copy the row_indices from a COO matrix to a thrust vector in CUSP

I have been trying to copy the row indices, column indices and values of a COO matrix into separate thrust vectors, but I find that I am unable to do so. Below is the code cusp::coo_matrix ...

1 2 3 4 5 9