safeDivide
a division operator that returns 0 if the divisor is 0.
safeLn
a natural logarithm operator that return 0 if its argument is less
then 0.
ln
is the natural logarithm.
positive
returns true if its argument is greater then 0.
ifPositive
returns its second argument if its first argument is positive,
otherwise its third argument.
ifThenElse
returns its second argument if its first argument is TRUE
,
otherwise its third argument.
1 2 3 4 5 6 7 8 9 10 11 12 13 | safeDivide(a, b)
safeSqroot(a)
safeLn(a)
ln(a)
positive(x)
ifPositive(x, thenbranch, elsebranch)
ifThenElse(x, thenbranch, elsebranch)
|
a |
A numeric value. |
b |
A numeric value. |
x |
A numeric value. |
thenbranch |
The element to return when |
elsebranch |
The element to return when |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.