<-- Previous || Up || Next -->

Exp 10 Function
Math Trig Complex Class

Public Function Exp10( _
    ByVal vX As Variant _
    ) As Variant

"Exponent Base 10"
Common antilogarithm.
Ten (10) to the power of X where X is a real or complex number.

Examples:
    Exp10(0) = 1
    Exp10(1) = 10
    Exp10(2) = 100
    Exp10("2.3|-4.5") = "-118.184356784098|160.75812535259"
See also:
    Exponent Function
    Power Function
    Log10 Function
vX: Function returns ten (10) raised to the power of this number. Function returns Null if vX is Null or cannot be fixed up to a real or complex number (as defined by the ComplexStringToReals function). Complex numbers are represented within strings as "R|I" where R is the real part and I is the imaginary part.
Definition:
    Exponent(Log(10) * X)

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.