summaryrefslogtreecommitdiff
path: root/gi/posterior-regularisation/prjava/src/util/Matrix.java
blob: 8fb6d9115afc03f5cb29e5c5204b2456bea1db77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package util;

public class Matrix {
	int x;
	int y;
	double[][] values;
	
	public Matrix(int x, int y){
		this.x = x;
		this.y=y;
		values = new double[x][y];
	}
	
	
	
}