> From: Berin Loritsch [mailto:bloritsch@apache.org] > 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 for all integer values of between and ". 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: cocoon-dev-unsubscribe@xml.apache.org For additional commands, email: cocoon-dev-help@xml.apache.org