Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
{ Euler’s constant }
|
||||
exp(1)
|
||||
{ principal square root of `x` }
|
||||
sqrt(x)
|
||||
{ natural logarithm }
|
||||
ln(x)
|
||||
{ exponential }
|
||||
exp(x)
|
||||
{ absolute value }
|
||||
abs(x)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
{ Pi }
|
||||
2 * arg(cmplx(0.0, maxReal))
|
||||
{ power, yields same data type as `base`, `exponent` has to be an `integer` }
|
||||
base pow exponent
|
||||
{ `real` power, `exponent` may be an `integer` or `real` value, yet `base` and }
|
||||
{ `exponent` are automatically promoted to an approximate `real` value, result }
|
||||
{ is `complex` if `base` is `complex`, otherwise a `real` value }
|
||||
base ** exponent
|
||||
Loading…
Add table
Add a link
Reference in a new issue