Fixed reducing functions description

This commit is contained in:
2023-10-09 21:19:47 +03:00
parent 5763c996c4
commit c46182e2f8

View File

@ -32,7 +32,7 @@ Functions:
| `asin` | $\sin^{-1}(x)$ | | `asin` | $\sin^{-1}(x)$ |
| `asinh` | $\sinh^{-1}(x)$ | | `asinh` | $\sinh^{-1}(x)$ |
| `atan` | $\tan^{-1}(x)$ | | `atan` | $\tan^{-1}(x)$ |
| `avg` | $\overline x$ | | `avg` | $\overline X$ |
| `cos` | $\cos(x)$ | | `cos` | $\cos(x)$ |
| `cosh` | $\cosh(x)$ | | `cosh` | $\cosh(x)$ |
| `cot` | $\cot(x)$ | | `cot` | $\cot(x)$ |
@ -58,6 +58,6 @@ Floating points: `.`, `,`
Functions have only one argument, provided in braces. Operators must have two operands except minus (if it is the first character of equation or braced expression). Functions have only one argument, provided in braces. Operators must have two operands except minus (if it is the first character of equation or braced expression).
`sum` and `prod` sums and multiplies all elements in variable if it is `numpy.ndarray` and produces a `float`. `avg`, `sum` and `prod` applied on `numpy.ndarray` produce `float`.
**! There is no error handling yet !** **! There is no error handling yet !**