mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-11-08 00:44:40 +01:00
Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals
kalk | ||
kalk_cli | ||
.gitignore | ||
README.md |
kalk
Kalk is a CLI calculator that supports user-defined variables and functions. An example of what it can parse:
f(x, y) = sum(1, 3, (2sin4/x!)^y) + cos(n deg)
a = 3
f(a, 2)
>> 1.1899401098014355
Compiling
- Make sure you have
diffutils
gcc
make
andm4
installed. - Go into the
kalk_cli
directory. - Run
cargo build --release
- Grab the binary from
targets/release