test morning

Dependencies:   ISR_Mini-explorer mbed

Fork of roboticLab_withclass_3_July by Georgios Tsamis

Revision:
8:072a76960e27
Child:
9:1cc27f33d3e1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/myMatrix.hpp	Mon Jul 10 12:49:07 2017 +0000
@@ -0,0 +1,33 @@
+#ifndef MYMATRIX_HPP
+#define MYMATRIX_HPP
+
+class myMatrix
+{
+    public:
+        int nbRow;
+        int nbColumn;
+        float** data;
+
+        myMatrix(int inNbRow,int inNbColumn);
+
+        void fillWithInverse(myMatrix mat1);
+
+        //WIP
+        //void fillWithArray(float** array);
+
+        void fillWithTranspose(myMatrix mat1);
+
+        void fillByMultiplication(myMatrix mat1,myMatrix mat2);
+
+        void addition(myMatrix mat1);
+
+        void subtraction(myMatrix mat1);
+
+        void print();
+
+    protected:
+
+    private:
+};
+
+#endif // MYMATRIX_HPP