/Algeo01-13519044

This is our repository for our Linear and Geometric Algebra first project. Informatics ITB : Class of 2020

Primary LanguageJavaGNU General Public License v3.0GPL-3.0

Linear and Geometric Algebra Project 01

This is our project that's being maintained by 3 people:

  • Kinantan Arya Bagaspati (13519044)
  • Widya Anugrah Putra (13519105)
  • Kadek Surya Mahardika (13519165)

What is this project about?

This project was made in order to fill the requirements of the Linear and Geometric Algebra class in ITB Informatics Engineering. This project consists of several features, such as:

  • Linear Equation Calculator
  • Determinant Calculator
  • Matrix Inverse Calculator
  • Polynomial Interpolation Calculator
  • Bilinear Regression Calculator

FYI : All those features above can read and write test cases either in file or in console.

The Creation Process

This program was made under several conditions:

  • Using Java SE Runtime Environment (build 15+36-1562). (JDK & JRE)
  • Created using Visual Studio Code with several extensions.

How do you run this program?

Using batch file

Run run.bat once, it will automatically compile and run the java files.

Manually compile using javac and running using java

  1. Firstly, make sure you're in src directory right now, if not, try to change your directory by typing cd srcPATH in your command line. srcPATH is the path where you store the src file which included in Algeo01-13519044 folder.
  2. Type in into command line : javac -d ../bin ./*.java, it will compile all .java files i.e create the bytecodes.
  3. Finally, to interpret Main bytecode i.e run the program, type : java -cp ../bin Main into the command line.