mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-13 01:50:41 +01:00
Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals
6dbcee4d21
Create LICENSE |
||
---|---|---|
kalk | ||
kalk_cli | ||
.gitignore | ||
LICENSE | ||
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