Divide

<series> output = <series>.div(<constant> Divisor Value)

<series> output = <series>.div(<series> Divisor Series)

This function divides the calling series by either Divisor Value or Divisor Series.  If Divisor Series is used, Divisor Series and the calling series must have the same number of points and they are divided point-wise.  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.div(5);

var mySeries3 = mySeries.div(mySeries2);