Skip to content
This repository has been archived by the owner on Dec 30, 2018. It is now read-only.

A graphing calculator written for the final project for my Object Oriented Programming course. It's capable of working with rational complex numbers.

License

Notifications You must be signed in to change notification settings

bitwizeshift/Graphing-Calculator

Repository files navigation

Polynomial Graphing Calculator

A graphing calculator project which was designed as part of a university assignment.

This project was implemented during second-year University. The design of this does not necessarily reflect the quality of decisions that would be made if this were to be done again from scratch.

This project is no longer maintained

Features

  • Single-variable polynomials with arbitrary coefficients
  • Polynomials containing imaginary/complex numbers
  • Polynomials containing rational numbers
  • Reducing rational/complex numbers, and polynomials to lowest terms
  • Graphing polynomial output, along with first and second order derivations

Screenshot

How to build

From terminal, invoke:

./gradlew build

for posix, or

gradlew.bat build

from windows

The resulting binary will be in build/libs/Graphing-Calculator-<version>.jar

How to run

If the jar is already built, it can be executed the same as any java jar,
by running java -jar <jarname>, e.g.:

java -jar build/libs/Graphing-Calculator-<version>.jar

Alternatively, the project can be both built and run in one command of:

./gradlew run # 'gradlew.bat run' on windows

License

The class is licensed under the MIT License:

Copyright © 2013 Matthew Rodusek

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A graphing calculator written for the final project for my Object Oriented Programming course. It's capable of working with rational complex numbers.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages