Last of the javadoc issues

This commit is contained in:
Ray DeCampo 2017-05-13 10:40:25 -04:00
parent cc6a661f99
commit cec35baf0b
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ import org.apache.commons.math4.util.MathUtils;
* <li> m2 = previous value of {@link ThirdMoment} </li> * <li> m2 = previous value of {@link ThirdMoment} </li>
* <li> n = number of observations (including current obs) </li> * <li> n = number of observations (including current obs) </li>
* </ul> * </ul>
* Then </p> * Then
* <p> * <p>
* new value = old value - 4 * (dev/n) * m3 + 6 * (dev/n)^2 * m2 + <br> * new value = old value - 4 * (dev/n) * m3 + 6 * (dev/n)^2 * m2 + <br>
* [n^2 - 3 * (n-1)] * dev^4 * (n-1) / n^3 </p> * [n^2 - 3 * (n-1)] * dev^4 * (n-1) / n^3 </p>

View File

@ -33,7 +33,7 @@ import org.apache.commons.math4.util.MathUtils;
* <li> m2 = previous value of {@link SecondMoment} </li> * <li> m2 = previous value of {@link SecondMoment} </li>
* <li> n = number of observations (including current obs) </li> * <li> n = number of observations (including current obs) </li>
* </ul> * </ul>
* Then</p> * Then
* <p> * <p>
* new value = old value - 3 * (dev/n) * m2 + (n-1) * (n -2) * (dev^3/n^2)</p> * new value = old value - 3 * (dev/n) * m2 + (n-1) * (n -2) * (dev^3/n^2)</p>
* <p> * <p>