val method

MathValue val(
  1. int row,
  2. int col
)

Implementation

MathValue val( int row, int col ){
	return _mat[((row >= _row) || (col >= _col)) ? _len/*番人*/ : row * _col + col];
}