Computes the mean value of all values stored in this vector @return the mean value
()
| 505 | * @return the mean value |
| 506 | */ |
| 507 | public double mean() |
| 508 | { |
| 509 | return sum()/length(); |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * Computes the standard deviation of the values in this vector |