col method

Vector col(
  1. int j
)

Implementation

Vector col(int j) {
  final List<double> col = <double>[];
  for (int i = 0; i < nrows; i++) {
    col.add(this[i][j]);
  }
  return Vector.fromList(col);
}