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
- Host: GitHub
- URL: https://github.com/ppcamp/java-rmi-matrix-solver-server
- Owner: ppcamp
- Archived: true
- Created: 2021-12-29T18:37:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-29T18:37:43.000Z (over 4 years ago)
- Last Synced: 2025-03-03T05:43:44.041Z (over 1 year ago)
- Language: Java
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
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
```