Class EMAUtils


  • public class EMAUtils
    extends Object
    • Constructor Detail

      • EMAUtils

        public EMAUtils()
    • Method Detail

      • single_exponential_smoothing

        public static org.apache.sysds.runtime.util.EMAUtils.Container single_exponential_smoothing​(Double[] data,
                                                                                                    Double alpha)
      • double_exponential_smoothing

        public static org.apache.sysds.runtime.util.EMAUtils.Container double_exponential_smoothing​(Double[] data,
                                                                                                    Double alpha,
                                                                                                    Double beta)
      • triple_exponential_smoothing

        public static org.apache.sysds.runtime.util.EMAUtils.Container triple_exponential_smoothing​(Double[] data,
                                                                                                    Double alpha,
                                                                                                    Double beta,
                                                                                                    Double gamma,
                                                                                                    Integer freq)