# | Line 313 | Line 313 | namespace oopse { | |
---|---|---|
313 | return *this; | |
314 | } | |
315 | ||
316 | + | /** |
317 | + | * Returns the sum of all elements of this vector. |
318 | + | * @return the sum of all elements of this vector |
319 | + | */ |
320 | + | inline Real sum() { |
321 | + | Real tmp; |
322 | + | tmp = 0; |
323 | + | for (unsigned int i = 0; i < Dim; i++) |
324 | + | tmp += this->data_[i]; |
325 | + | return tmp; |
326 | + | } |
327 | + | |
328 | /** | |
329 | * Returns the length of this vector. | |
330 | * @return the length of this vector |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |