[SOLVED] JAVA heap size problem
Hi,
I am facing java heap size problem while running the code.
My code is very simple, but it has several single and 2 dimentional arrays of size 3619 and 3619x3619. I run my code in Eclipse. It gives me the below error :
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
My code stops at the declaration of the the array
double[][] sample=new double[3619][3619];
Can u tell me how to increase heap size in "Eclipse"?
What are the jav memory limitations?