{dist,distmv,sample,stat}: add missing copyright headers and package docs

This commit is contained in:
kortschak
2016-03-08 10:07:34 +10:30
parent aa29fc4604
commit e65a547b1f
6 changed files with 19 additions and 0 deletions

5
dist/general.go vendored
View File

@@ -1,3 +1,8 @@
// Copyright ©2014 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package dist provides univariate random distribution types.
package dist package dist
// Parameter represents a parameter of a probability distribution // Parameter represents a parameter of a probability distribution

View File

@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// Package distmv provides multivariate random distribution types.
package distmv package distmv
var ( var (

View File

@@ -1,3 +1,7 @@
// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package distmv package distmv
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package sample package sample
import "github.com/gonum/stat/dist" import "github.com/gonum/stat/dist"

View File

@@ -1,3 +1,7 @@
// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package sample package sample
import "github.com/gonum/stat/dist" import "github.com/gonum/stat/dist"

View File

@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// Package stat provides generalized statistical functions.
package stat package stat
import ( import (