Some help for the Python and latex expressions
Do not use any other variables in the expression than x (the values of the timeseries)
Equation type |
Example |
Python code |
Latex code |
Polynom |
$~-0.5\cdot10^{-5}x^3+2.35x^2-124.5x+15.3~$ |
-0.5e-5*x**3 + 2.35*x**2 - 124.5*x + 15.3 |
-0.5\dot10^{-5}x^3+2.35x^2-124.5x+15.3 |
Exponential |
$~3.2 e^{0.5x}~$ |
3.2 * exp(0.5*x) |
3.2 e^{0.5x} |
nat. log. |
$~\ln{x}~$ |
log(x) |
\ln{x}) |
dec. log. |
$~\log_{10}{x}~$ |
log10(x) |
\log_{10}{x} |
cumulative sum |
\[\int_{t=0}^{t(x)}x dx\] |
cumsum(x) |
\int_{t=0}^{t(x)}x'dx |