calculating Moving averages - package updated
This commit is contained in:
parent
f2c6d26c82
commit
06c69e42ee
|
@ -13,7 +13,6 @@
|
|||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
public class ExponentialMovingAverage {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
public class MovingAverageByCircularBuffer {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import java.util.stream.DoubleStream;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import org.junit.Test;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import org.junit.Test;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import org.junit.Test;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.movingaverages;
|
||||
package com.baeldung.algorithms.movingaverages;
|
||||
|
||||
import org.junit.Test;
|
||||
|
|
@ -26,7 +26,6 @@
|
|||
<module>algorithms-searching</module>
|
||||
<module>algorithms-sorting</module>
|
||||
<module>algorithms-sorting-2</module>
|
||||
<module>algorithms-miscellaneous-8</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
|
|
Loading…
Reference in New Issue