Creates a list of the vectors values for each data point in the correct order. @return a list of the vectors for the data points
()
| 557 | * @return a list of the vectors for the data points |
| 558 | */ |
| 559 | public List<Vec> getDataVectors() |
| 560 | { |
| 561 | List<Vec> vecs = new ArrayList<Vec>(getSampleSize()); |
| 562 | for(int i = 0; i < getSampleSize(); i++) |
| 563 | vecs.add(getDataPoint(i).getNumericalValues()); |
| 564 | return vecs; |
| 565 | } |
| 566 | |
| 567 | /** |
| 568 | * The data set can be seen as a NxM matrix, were each row is a |