calculating Moving averages - package updated

This commit is contained in:
Jagath Kumar
2024-04-17 18:28:28 +05:30
parent f2c6d26c82
commit 06c69e42ee
10 changed files with 8 additions and 10 deletions
@@ -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;