I have a big array, have 640000 elements type double. I need to plot values, but the array's length is enormous and it consumes processor resources.
The resolution of my screen is only 600x600.
How can I to shrink my big array for plot it with only 400 possible values(200 dots for borders).
I was trying to use Java, but I have no idea for beging... Hi
I'm plotting X,t (time)..
double BigArray = new double[640000];
//...
filling the vector
//...
calculating resolution available (dots)
int n = 400;
//...
double LitArray = new double[n];
double TimeArray = new double[n];
//...
calculating new values for LitArray and TimeArray.
//...
Thanks