exp, 10p
exp(x) calculates e ^ x
10p(x) calculates 10 ^x
Non-numeric values (including dates) are passed through without modifications. This is particularly suitable in combination with vectorization in order
to pass through blank contents, explanatory text, etc.
Vectorization: These functions support vectorization in the 1st function parameter.
Instead of providing a single value, you can provide a set or even a nested set which contain multiple values.
The function will then process every value and its return value contains a corresponding set containing all results.
Indirect parameter passing is disabled
Vectorization is allowed in the 1st function parameter
1
No. | Type | Description |
---|---|---|
1 input |
all types set |
Value Value or set containing multiple values (vectorization) |
Type | Description |
---|---|
all types set |
Result Calculated value(s) |
echo( exp( 1 ) );
echo( 10p( 3 ) );
echo( 10p( 3.5 ) );
2.7182818285
1000
3162.2776601684