Golang方差算法

引用 "github.com/grd/statistics" 包

func main() {
     //定義數組
     data := statistics.Int64{1, 2, 3, 4, 5}
     //方差計算
     variance := statistics.Variance(&data)
     //輸出結果(2.5)
     fmt.Println(variance)

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章