// // MPProductFunctionTerm.h // MathPad // // Created by Kim Wittenburg on 10.01.15. // Copyright (c) 2015 Kim Wittenburg. All rights reserved. // #import "MPFunctionTerm.h" /*! @header This file contains the MPProductFunctionTerm class. */ @class MPProductFunctionTerm; /*! @class MPProductFunctionTerm @abstract Represents and evaluates a @link //apple_ref/occ/cl/MPProductFunction@/link. @discussion A product function evaluates its sum term n times. How often it actually is evaluated depends on the boundary expressions (start and target). Both are inclusive. A product function also features a variable that contains the current value of the iteration. The variable is defined in the start expression and incremented by 1 after every iteration. */ @interface MPProductFunctionTerm : MPFunctionTerm @end