Evaluates the sum of a series.
An arbitrary function of "n" can be evaluated for a series. This implements a standard "SIGMA" notation sum.
menu: veeos ==> Math ==> SIGMA
library: mathLib
o_SIGMA("n^2*(n-1)",3,5) = (9*2)+(16*3)+(25*4) = 166
A very common operation for series is the sum of the various terms. This evaluates that sum.
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. FofN and A must be record fields as shown below.
VEE 7.0+, all platforms