Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Sparse matrices / arrays in Java

Hi, I have big matrix, like thousands rows and columns, I am wondering if there is any good design pattern in Java that can help in this issue to process matrix quickly.

Thanks

p.s. my matrix is sparse some time

EDIT: I perform different operations on matrix, such as distance algorithm, but it really depends on project.

By the way, I know about matrix and how to perform different functions. I was just wondering that if there is any Design Pattern available for matrix? For example, for hierarchical stuff we can use visitor pattern.

share|improve this question
3  
The answer is yes. (if you don't give details on what your trying to do we can't help you more) – Jason Rogers Dec 15 '10 at 3:33
thanks, what kind of information do you need? – Tweet Dec 15 '10 at 3:34
@user431276 What kind of "process" do you need to do with your matrix? be more specific please. – tim_wonil Dec 15 '10 at 3:36

marked as duplicate by Matt Ball, BalusC, Don Roby, Brad Mace, Josh Lee Dec 15 '10 at 7:37

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Possible duplicate of Sparse matrices / arrays in Java

I also find this library useful

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.