public Gauss(int n, double[,] A) { this.n = n; this.A = A; UserConsole.PrintNumber("Порядок системы, n", n); UserConsole.PrintMatrix("Матрица системы, A", A, n); }
public Gauss(int n, double[,] A, double[] b) { this.n = n; this.A = A; this.b = b; UserConsole.PrintNumber("Порядок системы, n", n); UserConsole.PrintMatrix("Матрица системы, A", A, n); UserConsole.PrintVector("Правая часть системы, b", b); }
public void Determenant() { double determenant = 1; for (int i = 0; i < n; i++) { determenant = A[i, i] * determenant; } UserConsole.PrintNumber("Определитель", determenant); }