-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: move float slice/map to a single package
- Loading branch information
Showing
68 changed files
with
458 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package floats | ||
|
||
type Map map[string]float64 | ||
|
||
func (m Map) Sum() float64 { | ||
sum := 0.0 | ||
for _, v := range m { | ||
sum += v | ||
} | ||
return sum | ||
} | ||
|
||
func (m Map) MulScalar(x float64) Map { | ||
o := Map{} | ||
for k, v := range m { | ||
o[k] = v * x | ||
} | ||
|
||
return o | ||
} | ||
func (m Map) DivScalar(x float64) Map { | ||
o := Map{} | ||
for k, v := range m { | ||
o[k] = v / x | ||
} | ||
|
||
return o | ||
} | ||
|
||
func (m Map) Normalize() Map { | ||
sum := m.Sum() | ||
if sum == 0 { | ||
panic("zero sum") | ||
} | ||
|
||
o := Map{} | ||
for k, v := range m { | ||
o[k] = v / sum | ||
} | ||
|
||
return o | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
package floats | ||
|
||
import ( | ||
"math" | ||
|
||
"gonum.org/v1/gonum/floats" | ||
) | ||
|
||
type Slice []float64 | ||
|
||
func New(a ...float64) Slice { | ||
return Slice(a) | ||
} | ||
|
||
func (s *Slice) Push(v float64) { | ||
*s = append(*s, v) | ||
} | ||
|
||
func (s *Slice) Update(v float64) { | ||
*s = append(*s, v) | ||
} | ||
|
||
func (s *Slice) Pop(i int64) (v float64) { | ||
v = (*s)[i] | ||
*s = append((*s)[:i], (*s)[i+1:]...) | ||
return v | ||
} | ||
|
||
func (s Slice) Max() float64 { | ||
return floats.Max(s) | ||
} | ||
|
||
func (s Slice) Min() float64 { | ||
return floats.Min(s) | ||
} | ||
|
||
func (s Slice) Sum() (sum float64) { | ||
return floats.Sum(s) | ||
} | ||
|
||
func (s Slice) Mean() (mean float64) { | ||
length := len(s) | ||
if length == 0 { | ||
panic("zero length slice") | ||
} | ||
return s.Sum() / float64(length) | ||
} | ||
|
||
func (s Slice) Tail(size int) Slice { | ||
length := len(s) | ||
if length <= size { | ||
win := make(Slice, length) | ||
copy(win, s) | ||
return win | ||
} | ||
|
||
win := make(Slice, size) | ||
copy(win, s[length-size:]) | ||
return win | ||
} | ||
|
||
func (s Slice) Diff() (values Slice) { | ||
for i, v := range s { | ||
if i == 0 { | ||
values.Push(0) | ||
continue | ||
} | ||
values.Push(v - s[i-1]) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) PositiveValuesOrZero() (values Slice) { | ||
for _, v := range s { | ||
values.Push(math.Max(v, 0)) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) NegativeValuesOrZero() (values Slice) { | ||
for _, v := range s { | ||
values.Push(math.Min(v, 0)) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) Abs() (values Slice) { | ||
for _, v := range s { | ||
values.Push(math.Abs(v)) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) MulScalar(x float64) (values Slice) { | ||
for _, v := range s { | ||
values.Push(v * x) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) DivScalar(x float64) (values Slice) { | ||
for _, v := range s { | ||
values.Push(v / x) | ||
} | ||
return values | ||
} | ||
|
||
func (s Slice) Mul(other Slice) (values Slice) { | ||
if len(s) != len(other) { | ||
panic("slice lengths do not match") | ||
} | ||
|
||
for i, v := range s { | ||
values.Push(v * other[i]) | ||
} | ||
|
||
return values | ||
} | ||
|
||
func (s Slice) Dot(other Slice) float64 { | ||
return floats.Dot(s, other) | ||
} | ||
|
||
func (s Slice) Normalize() Slice { | ||
return s.DivScalar(s.Sum()) | ||
} | ||
|
||
func (s *Slice) Last() float64 { | ||
length := len(*s) | ||
if length > 0 { | ||
return (*s)[length-1] | ||
} | ||
return 0.0 | ||
} | ||
|
||
func (s *Slice) Index(i int) float64 { | ||
length := len(*s) | ||
if length-i <= 0 || i < 0 { | ||
return 0.0 | ||
} | ||
return (*s)[length-i-1] | ||
} | ||
|
||
func (s *Slice) Length() int { | ||
return len(*s) | ||
} | ||
|
||
func (s Slice) Addr() *Slice { | ||
return &s | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.