MathMatrix constructor

MathMatrix([
  1. int row = 1,
  2. int col = 1
])

Implementation

MathMatrix( [int row = 1, int col = 1] ){
	_row = row; // 行数
	_col = col; // 列数
	_len = _row * _col; // 行×列をあらかじめ計算した値
	_mat = MathValue.newArray( _len + 1/*番人*/ );
}