getColumn method

List<double> getColumn(
  1. int j
)

Implementation

List<double> getColumn(int j) {
  return values.map((row) => row[j]).toList();
}