Sets the value stored at a specified index in the vector @param index the index to access @param val the value to store in the index @throws IndexOutOfBoundsException if the index given is greater than or equal to its #length()
(int index, double val)
| 112 | * equal to its {@link #length() } |
| 113 | */ |
| 114 | abstract public void set(int index, double val); |
| 115 | |
| 116 | /** |
| 117 | * Increments the value stored at a specified index in the vector |
no outgoing calls