#include <fcl/vec.hh>

class Matrix
{
public:
  Matrix(int rows, int cols);
  void put(double varde, int row, int col);
  double get(int row, int col);
private:
  int rows_;
  int cols_;
  Vec<double> elem_;
};


