/HaskellCalculator

Haskell Calculator for solving linear equation systems

Primary LanguageHaskellBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Haskell-Calculator for linear equation systems

created at munihac2016 as a beginner project

How-To use

just fire up stack ghci and insert your linear equation like this:

give me your matrix!
1 1 0
0 1 0
0 0 1
whats the result-Vector?
3 3 6
result:[0.0,3.0,6.0]

Since this is a small, simple project i thought it might help Haskell beginners understand how a haskell-project is structured and what tools to use.