Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
17
votes
4answers
2k views

Are Javascript arrays sparse?

That is, if I use the current time as an index into the array: array[Date.getTime()] = value; will the interpreter instantiate all the elements from 0 to now? Do different browsers do it ...
9
votes
4answers
201 views

Does null occupy memory in javascript?

I've got the following situation: var large = [a,b,c,d,e,f,g,h,i]; var small = [a2, b2, c2, null, null, null, null, null, null, i2]; where every element of both arrays is an object. The small ...
7
votes
6answers
1k views

java: sparse bit vector

Are there any well-known libraries in Java for sparse bit vectors? (And are there guidelines for how sparse is useful to use them vs. java.util.BitSet?)
6
votes
3answers
189 views

Efficient alternative to Outer on sparse arrays in Mathematica?

Suppose I have two very large lists {a1, a2, …} and {b1, b2, …} where all ai and bj are large sparse arrays. For the sake of memory efficiency I store each list as one comprehensive sparse array. Now ...
4
votes
2answers
568 views

Efficient storage for a sparse octree?

Can anyone suggest a fast, efficient method for storing and accessing a sparse octree? Preferably something that can be easily implemented in HLSL. (I'm working a raycasting/voxel app) In this ...
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
5answers
501 views

Anyone Know a Great Sparse One Dimensional Array Library in Python?

I am working on an algorithm in Python that uses arrays of int64s heavily. The arrays are typically sparse and are read from and written to constantly. I am currently using relatively large native ...
4
votes
3answers
6k views

Decode sparse json array to php array

I can create a sparse php array (or map) using the command: $myarray = array(10=>'hi','test20'=>'howdy'); I want to serialize/deserialize this as JSON. I can serialize it using the command: ...
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 ...
2
votes
1answer
229 views

Load sparse array from npy file

I am trying load a sparse array that I have previously saved. Saving the sparse array was easy enough. Trying to read it though is a pain. scipy.load returns a 0d array around my sparse array. ...
2
votes
4answers
216 views

Sparse O(1) array with indices being consecutive products

I'd like to pre-calculate an array of values of some unary function f. I know that I'll only need the values for f(x) where x is of the form of a*b, where both a and b are integers in range 0..N. ...
2
votes
4answers
717 views

Get first element of a sparse JavaScript array

I have an array of objects in javascript. I use jquery. How do i get the first element in the array? I cant use the array index - as I assign each elements index when I am adding the objects to the ...
2
votes
2answers
313 views

how to implement a sparse_vector class

I am implementing a templated sparse_vector class. It's like a vector, but it only stores elements that are different from their default constructed value. So, sparse_vector would store the ...
2
votes
2answers
151 views

JSON implementations that handle sparse arrays

I need to know if any JSON implementations can handle sparse arrays to my satisfaction. I've seen the question: http://stackoverflow.com/questions/1733658/how-to-represent-a-sparse-array-in-json but ...
2
votes
2answers
430 views

How to represent a sparse array in JSON?

I've got a sparse array that I want to represent in JSON. For example: -10 => 100 -1 => 102 3 => 44 12 => -87 12345 => 0 How can I do this? Can I do this?
2
votes
2answers
1k views

Help with Sparse Array in JScript

I have a sparse array in Jscript, with non-null elements occuring at both negative and positive indices. When I try to use a for in loop, it doesn't traverse the array from the lowest (negative) index ...
1
vote
2answers
107 views

Is Cocoa's NSMutableArray sparse?

If I create an NSMutableArray that might have up to 2^16 elements, but will mostly be empty, will I be wasting space or is NSMutableArray implemented as a sparse array?
1
vote
1answer
317 views

Efficient Int32/Uint32 Sorted Map / Sparse Array

I'm looking for a specialized (and fast) Int32/UInt32 sorted map (that preferably is faster then System.Collections.Generic.SortedDictionary where K is either Int32 or UInt32). It's going to be used ...
1
vote
1answer
191 views

Data structure for representing sparse tensor?

What is an appropriate data structure to represent a sparse tesnor in C++? The first option that comes to mind is a boost::unordered_map since it allows operations like fast setting and retrieval of ...
1
vote
2answers
606 views

Recommended way to map between JavaScript sparse array and C# (sparse)array?

I am trying to map a JavaScript sparse array to a C# representation. What is the recommended way of doing this? It am considering using a dictionary containing the list of oridinals that contained ...
0
votes
0answers
49 views

Sparse Vector library in C

Hi I am implementing a multicore clustering algorithm in C. I need a good sparse vector implementation in C(since my multicore libraries are in C). I might need to change the allocation methods in ...
0
votes
1answer
104 views

Android: Is there an idiom for Iterating through a SparseArray

I'm using a list of unique int ids against a list of user names as a fast lookup table and decided to use the sparseArray but I would like to be able print to log the entire list from time to time for ...
0
votes
1answer
144 views

Store and update huge (and sparse?) multi-dimensional array efficiently to count conditional probabilities

Just for fun I would like to count the conditional probabilities that a word (from a natural language) appears in a text, depending on the last and next to last word. I.e. I would take a huge bunch of ...
0
votes
2answers
542 views

Which is the best way to implement a sparse vector in Java?

Which is the best way to implement a sparse vector in Java? Of course the good thing would be to have something that can be manipulated quite easily (normalization, scalar product and so on) Thanks ...
0
votes
4answers
714 views

Java time-efficient sparse 1D array (double)

I need an efficient Java structure to manipulate very sparse vectors of doubles: basic read / write operations. I implemented it in a HashMap but the access is too slow. Should I use another data ...