summaryrefslogtreecommitdiff
path: root/gi/posterior-regularisation/prjava/src/util/Matrix.java
diff options
context:
space:
mode:
Diffstat (limited to 'gi/posterior-regularisation/prjava/src/util/Matrix.java')
-rw-r--r--gi/posterior-regularisation/prjava/src/util/Matrix.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/gi/posterior-regularisation/prjava/src/util/Matrix.java b/gi/posterior-regularisation/prjava/src/util/Matrix.java
new file mode 100644
index 00000000..8fb6d911
--- /dev/null
+++ b/gi/posterior-regularisation/prjava/src/util/Matrix.java
@@ -0,0 +1,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];
+ }
+
+
+
+}