<html>
<head>
<link href="mmres://user_interface_reference.css" rel="stylesheet" type="text/css">
<title>LOG10</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
   <div id="Description">
   <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
      <tr> 
         <td valign="top" class="name">LOG10</td>
         <td valign="top" nowrap class="compatibility">&nbsp;</td>
      </tr>
      <tr>
         <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
      </tr>


    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Description</span>
<p>
Calculates the logarithm of number, to base 10.
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Returns</span>
<p>
Number; the logarithm of number, to base 10.
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Category</span>
<p>
Mathematical functions
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Function syntax</span><pre>Log10(number)
</pre>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">See also</span>
<p>
Exp, Log
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Parameters</span>
<p>

</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Example</span><pre>&lt;h3&gt;Log10 Example&lt;/h3&gt;
&lt;cfif IsDefined(&quot;FORM.number&quot;)&gt;
   &lt;cfoutput&gt;
      &lt;p&gt;Your number, #FORM.number#
      &lt;br&gt;#FORM.number# raised to the E power: #exp(FORM.number)#
      &lt;cfif FORM.number LTE 0&gt;&lt;br&gt;You must enter a positive real number to 
see the natural logarithm of that number
      &lt;cfelse&gt;&lt;br&gt;The natural logarithm of #FORM.number#: #log(FORM.number)#
      &lt;/cfif&gt;
      &lt;cfif #FORM.number# LTE 0&gt;&lt;br&gt;You must enter a positive real number to 
see the logarithm of that number to base 10
      &lt;cfelse&gt;&lt;br&gt;The logarithm of #FORM.number# to base 10: 
#log10(FORM.number)#
      &lt;/cfif&gt;
   &lt;/cfoutput&gt;
&lt;/cfif&gt;
&lt;cfform action = &quot;log10.cfm&quot;&gt;
Enter a number to find its value raised to the E power, its natural 
logarithm, and the logarithm of number to base 10.
&lt;cfinput type = &quot;Text&quot; name = &quot;number&quot; message = &quot;You must enter a number&quot; 
validate = &quot;float&quot; required = &quot;No&quot;&gt;
&lt;input type = &quot;Submit&quot; name = &quot;&quot;&gt;
&lt;/cfform&gt;
</pre>
         </td>
      </tr>
   </table>
   </div>
<div id="NUMBER">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">NUMBER</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>


<p>Positive real number for which to calculate the logarithm</p>

  </td>
  </tr>
  </table>
</div>

  </body>
</html>
