dup static method

Implementation

static MathMatrix dup( MathMatrix x ){
	MathMatrix a = MathMatrix( x._row, x._col );
	for( int i = 0; i < x._len; i++ ){
		MathValue.copy( a._mat[i], x._mat[i] );
	}
	return a;
}