10 lines
335 B
Text
10 lines
335 B
Text
%e$ /* e */
|
|
%pi$ /* pi */
|
|
sqrt(x)$ /* square root */
|
|
log(x)$ /* natural logarithm */
|
|
/* logarithms for all other bases are not built-in and have to be defined in terms of log(x) */
|
|
exp(x)$ /* exponential */
|
|
abs(x)$ /* magnitude */
|
|
floor(x)$ /* floor */
|
|
ceiling(x)$ /* ceiling */
|
|
x^y$ /* power */
|