Browse Source

mini-commit

Никита Кашлач 3 years ago
parent
commit
ae6aed626e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      MatrixXAMLOnly/Matrix.cs

+ 5 - 0
MatrixXAMLOnly/Matrix.cs

@@ -70,6 +70,11 @@ namespace Matrix
             }
         }
 
+        public static MyMatrix operator *(MyMatrix matrix1, MyMatrix matrix2)
+        {
+
+        }
+
         public static MyMatrix operator *(MyMatrix matrix1, double num)
         {
             double[,] array = new double[matrix1.Rows, matrix1.Columns];