> From: Berin Loritsch [mailto:[EMAIL PROTECTED]] > Stefano Mazzocchi wrote: > > I > don't know > what the letter above the sigma or below the sigma is supposed to signify. The sigma is like a summing for-loop. Example: > > > > n > > -- > > Invalid(r) = \ (V(r,I ) + Pc(r,I ) + s(r,I )) > > / i i i > > -- > > i = 1 > > would be like (with an asuumption of data types): float Invalid (float r) { float sum = 0.0; for (int i = 1; i <= n; i++) { sum += (V(r,I[i]) + Pc(r,I[i]) + s(r,I[i])) } return sum; } So, you can read the sigma as "sum of <expression after sigma> for all integer values of <whatever variable is below the sigma> between <the variable below the sigma's initial value> and <the value or variable on top of the sigma>". For the above: "sum of (V(r,Ii) + Pc(r,Ii) + s(r,Ii)) for all integer values of i between 1 and n". /LS --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]
- Re: initial checkin of the Scheme code Jason Foster
- Re: initial checkin of the Scheme code Stefano Mazzocchi
- Re: initial checkin of the Scheme code Jason Foster
- Re: initial checkin of the Scheme code Stefano Mazzocchi
- RE: initial checkin of the Scheme code Paulo Gaspar
- Adaptive Caching [was Re: initial ... Stefano Mazzocchi
- Re: Adaptive Caching [was Re: init... Berin Loritsch
- Re: Adaptive Caching [was Re: init... Berin Loritsch
- RE: Adaptive Caching [was Re: init... Gerhard Froehlich
- Re: Adaptive Caching [was Re: init... Stefano Mazzocchi
- Re: Adaptive Caching [was Re: init... Leo Sutic
- Re: Adaptive Caching [was Re: init... Berin Loritsch
- RE: Adaptive Caching [was Re: init... Gerhard Froehlich
- Re: Adaptive Caching [was Re: init... Antti Koivunen
- Re: Adaptive Caching [was Re: init... Stefano Mazzocchi
- RE: Adaptive Caching [was Re: init... Paulo Gaspar
- Re: Adaptive Caching [was Re: init... Antti Koivunen
- RE: Adaptive Caching [was Re: init... Paulo Gaspar
- Re: Adaptive Caching [was Re: init... Stefano Mazzocchi
- RE: Adaptive Caching [was Re: init... Paulo Gaspar
- Re: Adaptive Caching [was Re: init... Stefano Mazzocchi