1 | initial version |
Check the dimensions of your hist
, it should be one-dimensional.
The following should give you access to the values:
for( int x=0; x<25; x++ ) // 25 being your histSize
double y = hist.get(x,0)[0];
(And as ejehardenberg already remarked: please update the links you provided.)