(Vec b)
| 426 | } |
| 427 | |
| 428 | @Override |
| 429 | public void mutablePairwiseDivide(Vec b) |
| 430 | { |
| 431 | if(this.length() != b.length()) |
| 432 | throw new ArithmeticException("Vectors must have the same length"); |
| 433 | for(int i = startIndex; i < endIndex; i++) |
| 434 | this.array[i] /= b.get(i); |
| 435 | } |
| 436 | |
| 437 | @Override |
| 438 | public boolean equals(Object obj) |