Examples of agregar()


Examples of consola.Menu.agregar()

            public void ejecutar() {
                CuadraturaGauss metodo = new CuadraturaGauss();
                metodo.consola();
            }
        });
        menu.agregar("Metodo de Romberg", new MenuCallback() {
            public void ejecutar() {
                Romberg metodo = new Romberg();
                metodo.consola();
            }
        });
View Full Code Here

Examples of consola.Menu.agregar()

            public void ejecutar() {
                Romberg metodo = new Romberg();
                metodo.consola();
            }
        });
        menu.agregar("Metodo de Euler", new MenuCallback() {
            public void ejecutar() {
                Euler metodo = new Euler();
                metodo.consola();
            }
        });
View Full Code Here

Examples of consola.Menu.agregar()

            public void ejecutar() {
                Euler metodo = new Euler();
                metodo.consola();
            }
        });
        menu.agregar("Metodo de Euler Mejorado", new MenuCallback() {
            public void ejecutar() {
                EulerMejorado metodo = new EulerMejorado();
                metodo.consola();
            }
        });
View Full Code Here

Examples of consola.Menu.agregar()

            public void ejecutar() {
                EulerMejorado metodo = new EulerMejorado();
                metodo.consola();
            }
        });
        menu.agregar("Metodo de Runge Kutta", new MenuCallback() {
            public void ejecutar() {
                RungeKutta metodo = new RungeKutta();
                metodo.consola();
            }
        });
View Full Code Here

Examples of consola.Menu.agregar()

        Menu menu = new Menu();
        menu.setTitulo("Ejercicios PDF");


        Menu submenu = new Menu();
        submenu.agregar("(x^4)-4*(x^3)+6*(x^2)-(3*0.75)", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion1 = new Funcion("(x^4)-4*(x^3)+6*(x^2)-(3*0.75)");
                incremental.evaluar(funcion1, 1, -0.05, 100);

View Full Code Here

Examples of consola.Menu.agregar()

        menu.agregar("Busqueda Incremental", submenu);


        Menu submenu2 = new Menu();
        submenu2.agregar("(((2+0.4*x^2)/2.4)^3.5-1)/(0.7*x^2*(-0.383))-((1-x^2)^(-1/2)+(x^2*(-0.383)/2)/(1+(1+x^2)^(-1/2))^(-1))", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion2 = new Funcion("(((2+0.4*x^2)/2.4)^3.5-1)/(0.7*x^2*(-0.383))-((1-x^2)^(-1/2)+(x^2*(-0.383)/2)/(1+(1+x^2)^(-1/2))^(-1))");
                biseccion.evaluar(funcion2, 0.18, 0.98, 0.01);

View Full Code Here

Examples of consola.Menu.agregar()

                Funcion funcion2 = new Funcion("(((2+0.4*x^2)/2.4)^3.5-1)/(0.7*x^2*(-0.383))-((1-x^2)^(-1/2)+(x^2*(-0.383)/2)/(1+(1+x^2)^(-1/2))^(-1))");
                biseccion.evaluar(funcion2, 0.18, 0.98, 0.01);

            }
        });
        submenu2.agregar("exp(x)-2", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion3 = new Funcion("exp(x)-2");
                biseccion.evaluar(funcion3, 0, 2, 0.01);

View Full Code Here

Examples of consola.Menu.agregar()

                Funcion funcion3 = new Funcion("exp(x)-2");
                biseccion.evaluar(funcion3, 0, 2, 0.01);

            }
        });
        submenu2.agregar("-19(x-0.5)*(x-1)+exp(x)-exp(-2*x)", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion4 = new Funcion("-19(x-0.5)*(x-1)+exp(x)-exp(-2*x)");
                biseccion.evaluar(funcion4, -10, 10, 0.0001);

View Full Code Here

Examples of consola.Menu.agregar()

                Funcion funcion4 = new Funcion("-19(x-0.5)*(x-1)+exp(x)-exp(-2*x)");
                biseccion.evaluar(funcion4, -10, 10, 0.0001);

            }
        });
        submenu2.agregar("5*x^4-3*x^3+2*x^2-6*x", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion5 = new Funcion("5*x^4-3*x^3+2*x^2-6*x");
                biseccion.evaluar(funcion5, 1, 1.2, 0.0001);

View Full Code Here

Examples of consola.Menu.agregar()

                Funcion funcion5 = new Funcion("5*x^4-3*x^3+2*x^2-6*x");
                biseccion.evaluar(funcion5, 1, 1.2, 0.0001);

            }
        });
        submenu2.agregar("5*x^4-3*x^3+2*x^2-6*x", new MenuCallback() {
            public void ejecutar() {

                Funcion funcion6 = new Funcion("5*x^4-3*x^3+2*x^2-6*x");
                incremental.evaluar(funcion6, 1, 0.01, 100);

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.