Creates a list containing the same DataPoints in this set. They are soft copies, in the same order as this data set. However, altering this list will have no effect on DataSet. Altering the DataPoints in the list will effect the DataPoints in this DataSet. @return a list of the DataPoints in this D
()
| 545 | * @return a list of the DataPoints in this DataSet. |
| 546 | */ |
| 547 | public List<DataPoint> getDataPoints() |
| 548 | { |
| 549 | List<DataPoint> list = new ArrayList<DataPoint>(getSampleSize()); |
| 550 | for(int i = 0; i < getSampleSize(); i++) |
| 551 | list.add(getDataPoint(i)); |
| 552 | return list; |
| 553 | } |
| 554 | |
| 555 | /** |
| 556 | * Creates a list of the vectors values for each data point in the correct order. |
no test coverage detected