Пример #1
0
        private void botonGauss_Click(object sender, EventArgs e)
        {
            MetodoForm f = new MetodoForm(new GaussSeidel(A, B), MetodoForm.TipoMetodo.GaussSeidel, this);

            this.Hide();
            f.Show();
        }
Пример #2
0
        private void botonJacobi_Click(object sender, EventArgs e)
        {
            MetodoForm f = new MetodoForm(new Jacobi(A, B), MetodoForm.TipoMetodo.Jacobi, this);

            this.Hide();
            f.Show();
        }
Пример #3
0
 private void botonVolver_Click(object sender, EventArgs e)
 {
     this.Close();
     MetodoForm.Show();
 }