Log2(value)
Last updated October 09, 2001
Version: 1 | Requires: CF5 | Library: MathLib
Description:
Returns the logarithm to the base 2 of the value.
Return Values:
Returns a simple value.
Example:
<CFSET n=8>
<CFOUTPUT>
Given n=8
The Log2 of #n# is: #Log2(n)#
</CFOUTPUT>
Parameters:
Name | Description | Required |
---|---|---|
value | real number > 0. | Yes |
Full UDF Source:
/**
* Returns the logarithm to the base 2 of the value.
*
* @param value real number > 0.
* @return Returns a simple value.
* @author Joel Cox (jlcox@goodyear.com)
* @version 1, October 9, 2001
*/
function Log2(x)
{
if (x GT 0)
Return(Log(x) / Log(2));
else
Return("undefined");
}
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016