Sets the y-column points. The x-column points are always row numbers. @param yPoints the y-column data points
(double[] yPoints, int len)
| 41 | * @param yPoints the y-column data points |
| 42 | */ |
| 43 | public void setPoints(double[] yPoints, int len) { |
| 44 | clear(); |
| 45 | double[] rows = DataTool.getRowArray(len); |
| 46 | append(rows, yPoints); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Overrides Dataset.setXYColumnNames method. The x-column name is always "row". |
no test coverage detected