Log10 - MACROMEDIA COLDFUSION 4.5-CFML LANGUAGE Reference

Cfml language reference
Table of Contents

Advertisement

Chapter 2: ColdFusion Functions

Log10

Returns the logarithm of number to base 10.
See also
Syntax
Log10( number )
number
Positive real number for which you want the logarithm.
Examples
<!--- 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 see its value raised to the E power,
the natural logarithm of that number, 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>
Exp
and Log.
437

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Coldfusion 4.5

Table of Contents