Alters this vector such that this = this - c @param c the scalar constant to subtract from all values in this vector
(double c)
| 330 | * @param c the scalar constant to subtract from all values in this vector |
| 331 | */ |
| 332 | public void mutableSubtract(double c) |
| 333 | { |
| 334 | mutableAdd(-c); |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Alters this vector such that |