0
I want to concatenate N- number of d-dimensional arraylist into one large arraylist . I have done following:
{
Arraylist<Double> cFeature = new Arraylist<Double>();
for(int i =0 ; i < n; i++){
ArrayList<Double> arrList = new ArrayList<Double>();
...
