Mutates this /= c This method should be overloaded for a serious implementation. @param c the constant to divide by
(double c)
| 410 | * @param c the constant to divide by |
| 411 | */ |
| 412 | public void mutableDivide(double c) |
| 413 | { |
| 414 | for(int i = 0; i < length(); i++) |
| 415 | set(i, get(i)/c); |
| 416 | } |
| 417 | |
| 418 | /** |
| 419 | * Returns a copy of this array with the values moved around so that they are in sorted order |