File | Date | Author | Commit |
---|---|---|---|
gradle | 2017-05-06 |
![]() |
[99f0f9] Initial commit, created basic functionality |
src | 2017-06-04 |
![]() |
[db2a8c] Added Apfloat library and shortcuts for applica... |
.gitignore | 2017-05-21 |
![]() |
[7571ce] Fixed gitignore |
LICENSE | 2017-05-06 |
![]() |
[c8d0a4] Added license |
README.md | 2017-05-09 |
![]() |
[491da0] Upated README, removed outdated tests |
build.gradle | 2017-06-04 |
![]() |
[db2a8c] Added Apfloat library and shortcuts for applica... |
gradlew | 2017-05-06 |
![]() |
[99f0f9] Initial commit, created basic functionality |
gradlew.bat | 2017-05-06 |
![]() |
[99f0f9] Initial commit, created basic functionality |
settings.gradle | 2017-05-06 |
![]() |
[99f0f9] Initial commit, created basic functionality |
I've had no idea for creative name. Very simple calculator without annoying numpad. It supports basic arithmetic operations (adding, subtracting, modulo etc.) and some functions (sine, cosine etc.). It'll be expanded in the nearest future.
Name | Parameters | Example usage | Description |
---|---|---|---|
sin | x in radians | sin(17) | sine |
cos | x in radians | cos(17) | cosine |
tg | x in radians | tg(17) | tangent |
ctg | x in radians | ctg(17) | cotangent |
max | a, b | max(5,17) | max of two numbers |
min | a, b | min(5,17) | min of two numbers |
lg | a | lg(17) | natural logarithm |
log | a | log(17) | logarithm with base 10 |
exp | a | exp(17) | ex |
### Supported constants | |||
Name | Value | ||
---- | ----------------- | ||
pi | 3.141592653589793 | ||
e | 2.718281828459045 | ||
Usage of constants is simple - just enter its name. | |||
### Usage | |||
Just enter input in infix notation and hit enter. If you want to copy result to clipboard, hit Ctrl + Shift + C. | |||
You can also exit immediately - just hit Escape key. You can specify precision of output and switch between radians and degrees. |
Pyramid calc allows nesting functions, so you can calculate sine of sine (sin(sin(17))).