API Docs for: 1.0.0
Show:

File: src/gallery-mathcanvas/js/NaturalLog.js

/**
 * @module gallery-mathcanvas
 */

/**********************************************************************
 * <p>Natural logarithm.</p>
 * 
 * @namespace MathFunction
 * @class NaturalLog
 * @extends MathFunction.FunctionWithArgs
 * @constructor
 * @param f {MathFunction}
 */

function MathNaturalLog(
	/* MathFunction */	f)
{
	MathNaturalLog.superclass.constructor.call(this, MathNaturalLog.NAME, f);
}

MathNaturalLog.NAME = 'ln';

Y.extend(MathNaturalLog, MathFunctionWithArgs,
{
	/**
	 * @method evaluate
	 * @param var_list {Object} map of variable names to values or MathFunctions
	 * @return the value of the function
	 */
	evaluate: function(
		/* map */	var_list)
	{
		return Y.ComplexMath.log(this.args[0].evaluate(var_list));
	}
});

MathFunction.NaturalLog = MathNaturalLog;

MathFunction.name_map[ MathNaturalLog.NAME ] =
{
	applyTo: function(f)
	{
		return new MathNaturalLog(f);
	}
};