Computes the standard deviation of the values in this vector @return the standard deviation
()
| 514 | * @return the standard deviation |
| 515 | */ |
| 516 | public double standardDeviation() |
| 517 | { |
| 518 | return Math.sqrt(variance()); |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * Computes the variance of the values in this vector, which is |