Evaluates the product of a series.
An arbitrary function of "n" can be evaluated for a series. This implements a standard "PI" notation product.
menu: veeos ==> Math ==> PI
library: mathLib
o_PI("n^2*(n-1)",3,5) = (9*2)*(16*3)*(25*4) = 86400
A very common operation for series is the product of the various terms. This evaluates that product.
New for R2: instead of being limited to a single range of input values, a more complex series such as a Kalman filter may be evaluated by specifying a function and a series of values in the form of a record.
VEE 7.0+, all platforms