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