Log10(number)

Description

Returns the logarithm of number to base 10.

Category

International functions

See also

Exp, Log

Parameters

Parameter
Description
number
Positive real number for which you want the logarithm

Example

<!--- This example shows how to use Log10 --->
<html>
<head>
<title>
Log10 Example
</title>
</head>

<body bgcolor = silver>
<H3>Log10 Example</H3>

<cfif IsDefined("FORM.number")>
<cfoutput>
<P>Your number, #FORM.number#
<BR>#FORM.number# raised to the E power: #exp(FORM.number)#
<cfif FORM.number LTE 0><BR>You must enter a positive real number to
see the natural logarithm of that number<cfelse><BR>The natural 
logarithm
of #FORM.number#: #log(FORM.number)#</cfif>
<cfif #FORM.number# LTE 0><BR>You must enter a positive real number to
see the logarithm of that number to base 10<cfelse><BR>The logarithm of
#FORM.number# to base 10: #log10(FORM.number)#</cfif>
</cfoutput>
</cfif>
<cfform action = "log10.cfm" method = "POST">
Enter a number to find its value raised to the E power, its 
natural logarithm, and the logarithm of number to base 10.
<cfinput type = "Text" name = "number" message = "You must enter a 
number"
 validate = "float" required = "No">
<input type = "Submit" name = "">
</cfform>
</body>
</html>