Functions Index :: A :: ArrayPowSeries
Module:
Definition:
ArrayPowSeries(string x_array, string coef_func, string power_func, int start_index, int end_index, int "increment", string "coef_args", string "power_args")
Description:
Applies the PowSeries function to all array elements and returns the resulting array.
Examples:
function mycoef(int i) { return Pow(2, i) / Factorial(i) }
function mypow(int i) { return 2 * i + 1 }
ax = ArrayRange(0.1, 1.0, 0.1)
ay = ax.ArrayPowSeries("mycoef", "mypow", 0, 4)