An open API service indexing awesome lists of open source software.

https://github.com/ppcamp/java-rmi-matrix-solver-server

A project that implements an RMI server that can solve matrices
https://github.com/ppcamp/java-rmi-matrix-solver-server

Last synced: about 1 year ago
JSON representation

A project that implements an RMI server that can solve matrices

Awesome Lists containing this project

README

          

# Matrix multiply server method

* To compile files
```bash
for i in *.java;do javac -d bin $i; done
```
* To execute operation
```bash
# Inside bin folder
rmic MatrixImplements # Generate Stub, responsable of client server communications
java Server # To server start listen
java Client # Compute operation
```