/eco/cc/_tst/01_test.go

https://code.google.com/p/go-eco/ · Go · 13 lines · 10 code · 2 blank · 1 comment · 1 complexity · d4d8a389e738ddcb6305947267931a54 MD5 · raw file

  1. package cc
  2. import (
  3. "fmt"
  4. // "code.google.com/p/go-eco/eco/aux"
  5. "testing"
  6. )
  7. func TestGenBeta(t *testing.T) {
  8. for i := 0; i < 100; i++ {
  9. fmt.Println(GenBetaSRF(float64(i), 50.0, 50.0, 4.0, 2.0))
  10. }
  11. }