File: control

package info (click to toggle)
golang-github-vividcortex-ewma 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, experimental, sid, trixie
  • size: 92 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,344 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Source: golang-github-vividcortex-ewma
Section: devel
Priority: optional
Standards-Version: 4.4.1
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Dr. Tobias Quathamer <toddy@debian.org>,
           Dmitry Smirnov <onlyjob@debian.org>,
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any
Homepage: https://github.com/vividcortex/ewma
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-vividcortex-ewma
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-vividcortex-ewma.git
XS-Go-Import-Path: github.com/VividCortex/ewma
Testsuite: autopkgtest-pkg-go

Package: golang-github-vividcortex-ewma-dev
Architecture: all
Depends: ${misc:Depends}
Multi-Arch: foreign
Description: Exponentially Weighted Moving Average algorithms for Go
 An exponentially weighted moving average is a way to continuously
 compute a type of average for a series of numbers, as the numbers
 arrive. After a value in the series is added to the average, its
 weight in the average decreases exponentially over time. This biases
 the average towards more recent data. EWMAs are useful for several
 reasons, chiefly their inexpensive computational and memory cost, as
 well as the fact that they represent the recent central tendency of
 the series of values.