API Docs for: 1.0.0
Show:

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

/**
 * @module gallery-mathcanvas
 */

/**********************************************************************
 * <p>Phase of a complex number.</p>
 * 
 * @namespace MathFunction
 * @class Phase
 * @extends MathFunction.FunctionWithArgs
 * @constructor
 * @param f {MathFunction}
 */

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

MathPhase.NAME = 'arg';

Y.extend(MathPhase, 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.phase(this.args[0].evaluate(var_list));
	}
});

MathFunction.Phase = MathPhase;

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