Fills the values in a column of the matrix @param A the matrix in question @param j the column of the matrix @param from the first row index to fill (inclusive) @param to the last row index to fill (exclusive) @param val the value to fill into the matrix
(Matrix A, int j, int from, int to, double val)
| 430 | * @param val the value to fill into the matrix |
| 431 | */ |
| 432 | public static void fillCol(Matrix A, int j, int from, int to, double val) |
| 433 | { |
| 434 | for(int i = from; i < to; i++) |
| 435 | A.set(i, j, val); |
| 436 | } |
| 437 | } |