Added copyright on files

This commit is contained in:
btracey
2013-07-26 10:18:37 -07:00
parent 47d521845e
commit d2da7809bc
3 changed files with 16 additions and 0 deletions

View File

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

View File

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

View File

@@ -1,3 +1,7 @@
// Copyright 2013 The Gonum Authors. All rights reserved.
// Use of this code is governed by a BSD-style
// license that can be found in the LICENSE file
package floats
import (
@@ -298,6 +302,10 @@ func TestMin(t *testing.T) {
}
}
func TestNearest(t *testing.T) {
}
func TestNorm(t *testing.T) {
s := []float64{-1, -3.4, 5, 6}
val := Norm(s, math.Inf(1))