spreadsheet

terminal spreadsheet application
git clone https://git.ce9e.org/spreadsheet.git

commit
fc3212ae65beee244cdf6ee9bbf662fd9412e6de
parent
8d5822702c063b77476dc2bac691c2663054889c
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2024-10-03 19:21
document new functions

Diffstat

M README.md 10 +++++++++-

1 files changed, 9 insertions, 1 deletions


diff --git a/README.md b/README.md

@@ -42,7 +42,15 @@ Cells can have the following values:
   42    42 Formulas can contains the following functions:
   43    43 
   44    44 -   `sum(A1:B2)` - calculate the sum of all fields from the given range
   45    -1 -   `bar(A1)` - draw a bar for a value between 0 and 1
   -1    45 -   `min(A1:B2)` - calculate the minimum of all fields from the given range
   -1    46 -   `max(A1:B2)` - calculate the maximum of all fields from the given range
   -1    47 -   `power(a, b)` - calculate `a` to the power of `b`
   -1    48 -   `exp(a)` - exponential function
   -1    49 -   `sin(a)` - sine function
   -1    50 -   `cos(a)` - cosine function
   -1    51 -   `tan(a)` - tangent function
   -1    52 -   `log(a)` - natural logarithm
   -1    53 -   `bar(a)` - draw a bar for a value between 0 and 1
   46    54 
   47    55 ## Prior art
   48    56