Changed order of arguments of many functions. Added test for nearest

This commit is contained in:
btracey
2013-07-26 11:29:05 -07:00
parent 3e9dc87057
commit f6fd9bb947
2 changed files with 47 additions and 17 deletions

View File

@@ -90,7 +90,7 @@ func ExampleAddConst() {
s := []float64{1, -2, 3, -4}
c := 5.0
AddConst(s, c)
AddConst(c, s)
fmt.Println("s = ", s)
// Output: