min.go 505 B

1234567891011121314151617181920212223242526
  1. package stats
  2. import "math"
  3. // Min finds the lowest number in a set of data
  4. func Min(input Float64Data) (min float64, err error) {
  5. // Get the count of numbers in the slice
  6. l := input.Len()
  7. // Return an error if there are no numbers
  8. if l == 0 {
  9. return math.NaN(), EmptyInput
  10. }
  11. // Get the first value as the starting point
  12. min = input.Get(0)
  13. // Iterate until done checking for a lower value
  14. for i := 1; i < l; i++ {
  15. if input.Get(i) < min {
  16. min = input.Get(i)
  17. }
  18. }
  19. return min, nil
  20. }