I have a quick question. I have an array of objects (ODData) and I am trying to cope them into a multidimensional vector so I could do some clustering using Weka. I know it is really simple but for some reason I can't find a proper way in dong so.
new Clustering (routes);
............
............
public class Clustering {
Vector <Vector<ODData>> myData = new Vector <Vector<ODData>>();
public Clustering( ODData [] routes )
{
//What should I do here?
}
}
ODData consists out of three elements if it makes any difference.