set method

void set(
  1. int row,
  2. int col,
  3. double v
)

Set the given matrix element

Implementation

void set(int row, int col, double v) => _storage.setEntry(row, col, v);