Skip to content

yabetancourt/fixed-point-calculator

Repository files navigation

fixed-point-calculator

This project shows the implementation of the fixed point method, to find roots of equations, following the algorithm from the book Numerical Analysis by Douglas J. Faires.

Running the application

The project is a standard Maven project. To run it from the command line, type mvnw (Windows), or ./mvnw (Mac & Linux), then open http://localhost:8080 in your browser.

You can also import the project to your IDE of choice as you would with any Maven project. Read more on how to import Vaadin projects to different IDEs (Eclipse, IntelliJ IDEA, NetBeans, and VS Code).

Project structure

  • views package in src/main/java contains the server-side Java views of your application and the fixed point functionality.

Useful links