From c8f4497bda8cf0efcfced4a921d909262a571d41 Mon Sep 17 00:00:00 2001 From: fhdm-dev Date: Sat, 16 Sep 2023 17:14:41 +1000 Subject: [PATCH] initial commit --- docs/app-help/math.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/docs/app-help/math.md b/docs/app-help/math.md index be2026c..24b4a6e 100644 --- a/docs/app-help/math.md +++ b/docs/app-help/math.md @@ -2,8 +2,39 @@ title: Math --- -COMING SOON +Scoppy can display up to two math channels that can be configured using a range of arithmetic functions. +Up to five functions and three sources can be combined to create simple or complex formulas. + +## Enabling the Math Channel(s) +Tap 'Menu' and then 'Math'. From here you can switch on or off either of the math channels or tapping 'Edit' will +display the math settings screen. + +## Math functions + +### Unary functions + +Unary functions take a single input (y). + +| Function | Description | Implementation | +-----------|-------------|-| +| ABS | Absolute value | abs(y) | +| INV | Inverse | y * -1 | +| LOG | Base 10 logarithm | log(y) | +| LN | Base e logarithm | ln(y) | +| SQUARE | Squares the source | y * y | +| SQRT | The square root of the source | √y | +| RECIP | Reciprocal | 1/y | + +### Binary functions + +Binary functions take two inputs (y1, y2). + +| Function | Description | Implementation | +-----------|-------------|----------------| +| ADD | Addition | y1 + y2 | +| SUBTRACT | Subtraction | y1 - y2 | +| MULTIPLY | Multiplication | y1 * y2 | +| DIVIDE | Division | y1 / y2 | #### See also -
{% include scoppy-links.md %}