1
vote
4answers
99 views
I am having a problem with pointers in java. How do I fix a java.lang.NullPointerException ?
This is a method that gets a element from a Sparse Matrix in java. I keep getting a java.lang.NullPointerException error. I have looked over the code and can't find the error.
pu …
0
votes
6answers
150 views
Algorithm to minimize the space complexity of a sparse matrix?
When storing and manipulating sparse matrices on a computer (zeros and ones), it is beneficial and often necessary to use specialized algorithms and data structures that take advan …
2
votes
6answers
99 views
Encoding patterns in a 2D space (matrix)
I have a 2D MxN grid (or matrix). The cells in the matrix may hold an integer. A cell with a non-zero integer is said to be populated. The set of populated cells in the matrix is k …
3
votes
5answers
214 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 representat …
5
votes
8answers
383 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 …
2
votes
5answers
176 views
Capturing Non-Zero Elements, Counts and Indexes of Sparse Matrix
I have the following sparse matrix A.
2 3 0 0 0
3 0 4 0 6
0 -1 -3 2 0
0 0 1 0 0
0 4 2 0 1
Then I would like to capture the f …
0
votes
1answer
144 views
Sparse linear algebra solvers for C#
I'm working on an experimental implementation of Goldenthal et.al's inextensible cloth algorithm in C#.
First I used Math.NET Iridium to assemble and solve the matrices, but quic …
1
vote
2answers
172 views
Creating (and Accessing) a Sparse Matrix in R
After learning about the options for working with sparse matrices in R, I want to use the Matrix package to create a sparse matrix from the following data frame and have all other …
3
votes
3answers
175 views
Sparse Multi-Dimensional Data Representation
I'm working on a cardiac simulation tool that uses 4-dimensional data, i.e. several (3-30) variables at locations in 3D space.
I'm now adding some tissue geometry which will leave …
2
votes
3answers
178 views
iterating through TWO sparse matrices
I'm using boost sparse matrices holding bool's and trying to write a comparison function for storing them in a map. It is a very simple comparison function. Basically, the idea is …
0
votes
2answers
64 views
accessing element of boost sparse_matrix seems to stall program
I've got a strange bug that I'm hoping a more experience programmer might have some insight into. I'm using the boost ublas sparse matrices, specifically mapped_matrix, and there i …
3
votes
3answers
352 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 …
3
votes
3answers
298 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 h …
2
votes
2answers
102 views
Sparse Multidimensional Array or Matrix Libraries in .NET
Hi,
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 …
3
votes
6answers
378 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 …
