MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / fillCol

Method fillCol

JSAT/src/jsat/linear/RowColumnOps.java:432–436  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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}

Callers 2

tred2Method · 0.95
pascalMethod · 0.95

Calls 1

setMethod · 0.45

Tested by

no test coverage detected