private double[,] InverseB(double[,] ar2) { MyMatrix matrix2 = new MyMatrix(ar2.GetLength(1), ar2.GetLength(0)); matrix2.Zapoln(secondDgv); return(matrix2.Inverse(matrix2)); }
private double[,] InverseA(double[,] ar1) { MyMatrix matrix1 = new MyMatrix(ar1.GetLength(1), ar1.GetLength(0)); matrix1.Zapoln(firstDgv); return(matrix1.Inverse(matrix1)); }