(double c)
| 324 | } |
| 325 | |
| 326 | @Override |
| 327 | public void mutableDivide(double c) |
| 328 | { |
| 329 | clearCaches(); |
| 330 | for(int i = startIndex; i < endIndex; i++) |
| 331 | array[i] /= c; |
| 332 | } |
| 333 | |
| 334 | @Override |
| 335 | public double pNormDist(double p, Vec y) |
no test coverage detected