ibec_Power
ibec_Power raises Base to any power.
Syntax
function ibec_Power(Base, Exponent : double precision) : double precision;
Description
For fractional exponents Base must be greater than 0.
The ibec_Power returns NULL if it is impossible to raise Base to specified power (for example, ibec_Power(-4, 0.5) will return NULL).
Example:
execute IBEBlock returns (cout varchar(100)) as begin cout = ibec_Power(2, 3); suspend; end
back to top of page
<< ibec_Mod | IBEBlock | ibec_not >>