Functions Index :: E :: ExpBs

[<< up one level]

Module:

numeric :: functions

Definition:

ExpBs(float x, float base)

Description:

Returns the base-base exponent of x (ie (base)x). The base argument can take any value allowed by Pow function.

Examples:

e1 = ExpBs(1, 2.5) # e1 == 2.5

e2 = ExpBs(2, 3) # e2 == 9

 

[<< top]