If this matrix is A m x n , and b has a length of n, and c has a length of m, then this will mutate c to store c = c + A b z @param b the vector to be treated as a colum vector @param z the constant to multiply the A b
(Vec b, double z, Vec c)
| 277 | * @throws ArithmeticException if the dimensions of A, <b>b</b>, or <b>c</b> do not all agree |
| 278 | */ |
| 279 | abstract public void multiply(Vec b, double z, Vec c); |
| 280 | |
| 281 | /** |
| 282 | * Creates a new vector that is equal to <i>A*<b>b</b> </i> |