Exponential

<series> output = <series>.exp(<constant> Base Value)

<series> output = <series>.exp(<series> Base Series)

This function raises either Base Value or each data point in Base Series to the power of the corresponding data point in the calling series.  If Base Series is used, Base Series and the calling series must have the same number of points.  If they do not have the same number of points the function call will throw an exception.  This function requires exactly one argument.

Examples:

var mySeries2 = mySeries.exp(3);

var mySeries3 = mySeries.exp(mySeries2);