Skip to content

Commit 9b3ac7d

Browse files
committed
Change GH username
1 parent ae99294 commit 9b3ac7d

File tree

20 files changed

+56
-68
lines changed

20 files changed

+56
-68
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@ env:
88

99
script:
1010
- make all
11-
12-
after_success:
13-
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# go-estimate
22

3-
[![GoDoc](https://godoc.org/github.com/milosgajdos83/go-estimate?status.svg)](https://godoc.org/github.com/milosgajdos83/go-estimate)
3+
[![GoDoc](https://godoc.org/github.com/milosgajdos/go-estimate?status.svg)](https://godoc.org/github.com/milosgajdos/go-estimate)
44
[![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5-
[![Travis CI](https://travis-ci.org/milosgajdos83/go-estimate.svg?branch=master)](https://travis-ci.org/milosgajdos83/go-estimate)
6-
[![Go Report Card](https://goreportcard.com/badge/milosgajdos83/go-estimate)](https://goreportcard.com/report/github.com/milosgajdos83/go-estimate)
7-
[![codecov](https://codecov.io/gh/milosgajdos83/go-estimate/branch/master/graph/badge.svg)](https://codecov.io/gh/milosgajdos83/go-estimate)
5+
[![Travis CI](https://travis-ci.org/milosgajdos/go-estimate.svg?branch=master)](https://travis-ci.org/milosgajdos/go-estimate)
6+
[![Go Report Card](https://goreportcard.com/badge/milosgajdos/go-estimate)](https://goreportcard.com/report/github.com/milosgajdos/go-estimate)
87

98
This package offers a small suite of basic filtering algorithms written in Go. It currently provides the implementations of the following filters and estimators:
109

@@ -20,7 +19,7 @@ In addition it provides an implementation of [Rauch–Tung–Striebel](https://e
2019

2120
Get the package:
2221
```shell
23-
$ go get github.com/milosgajdos83/go-estimate
22+
$ go get github.com/milosgajdos/go-estimate
2423
```
2524

2625
Get dependencies:
@@ -32,7 +31,7 @@ Run unit tests:
3231
```shell
3332
$ make test
3433
```
35-
You can find various examples of usage in [go-estimate-examples](https://github.com/milosgajdos83/go-estimate-examples).
34+
You can find various examples of usage in [go-estimate-examples](https://github.com/milosgajdos/go-estimate-examples).
3635

3736
# TODO
3837

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/milosgajdos83/go-estimate
1+
module github.com/milosgajdos/go-estimate
22

33
go 1.13
44

55
require (
6-
github.com/milosgajdos83/matrix v0.0.0-20190506003350-38bc2a7ca9e3
6+
github.com/milosgajdos/matrix v0.0.0-20200225195132-b569a2d38acc
77
github.com/stretchr/testify v1.3.0
88
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2
99
gonum.org/v1/gonum v0.0.0-20190502212712-4a2eb0188cbc

go.sum

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,22 @@ github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 h1:DACJavvAHhabrF0
88
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k=
99
github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5 h1:PJr+ZMXIecYc1Ey2zucXdR73SMBtgjPgwa31099IMv0=
1010
github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes=
11-
github.com/milosgajdos83/matrix v0.0.0-20190506003350-38bc2a7ca9e3 h1:wAh3RhMmx9oHCxpQNdxuV3uT9GK2SfmyoogEOairK1c=
12-
github.com/milosgajdos83/matrix v0.0.0-20190506003350-38bc2a7ca9e3/go.mod h1:uPaTD+beOJY89niSp2gS8PadBW9Zgu1nqzrBWToLYsQ=
11+
github.com/milosgajdos/matrix v0.0.0-20200225195132-b569a2d38acc h1:339kt8qecG/sq7iQMNm0e050JjkLioVybayrBMyUGvQ=
12+
github.com/milosgajdos/matrix v0.0.0-20200225195132-b569a2d38acc/go.mod h1:syV6SoL9H0uoFn4wFjU7PFz2PKf3O8C/kbAxoOl1DSk=
1313
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1414
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1515
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
1616
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
1717
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
18-
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
1918
golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
2019
golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
2120
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2 h1:y102fOLFqhV41b+4GPiJoa0k/x+pJcEi2/HB1Y5T6fU=
2221
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
2322
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 h1:00VmoueYNlNz/aHIilyyQz/MHSqGoWJzpFv/HW8xpzI=
2423
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=
25-
golang.org/x/lint v0.0.0-20190930215403-16217165b5de h1:5hukYrvBGR8/eNkX5mdUezrA6JiaEZDtJb9Ei+1LlBs=
26-
golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
27-
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
28-
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
29-
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
3024
golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
3125
golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e h1:Io7mpb+aUAGF0MKxbyQ7HQl1VgB+cL6ZJZUFaFNqVV4=
3226
golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
33-
golang.org/x/tools v0.0.0-20190311212946-11955173bddd h1:/e+gpKk9r3dJobndpTytxS2gOy6m5uvpg+ISQoEcusQ=
34-
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
3527
gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo=
3628
gonum.org/v1/gonum v0.0.0-20190502212712-4a2eb0188cbc h1:+c7TChc7Bi9WFPyWzDxu8mnEhA29YW/0NBDy4V24exU=
3729
gonum.org/v1/gonum v0.0.0-20190502212712-4a2eb0188cbc/go.mod h1:2ltnJ7xHfj0zHS40VVPYEAAMTa3ZGguvHGBSJeRWqE0=

kalman/ekf/ekf.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package ekf
33
import (
44
"fmt"
55

6-
filter "github.com/milosgajdos83/go-estimate"
7-
"github.com/milosgajdos83/go-estimate/estimate"
8-
"github.com/milosgajdos83/go-estimate/noise"
6+
filter "github.com/milosgajdos/go-estimate"
7+
"github.com/milosgajdos/go-estimate/estimate"
8+
"github.com/milosgajdos/go-estimate/noise"
99
"gonum.org/v1/gonum/diff/fd"
1010
"gonum.org/v1/gonum/mat"
1111
)

kalman/ekf/ekf_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"os"
55
"testing"
66

7-
filter "github.com/milosgajdos83/go-estimate"
8-
"github.com/milosgajdos83/go-estimate/noise"
9-
"github.com/milosgajdos83/go-estimate/sim"
7+
filter "github.com/milosgajdos/go-estimate"
8+
"github.com/milosgajdos/go-estimate/noise"
9+
"github.com/milosgajdos/go-estimate/sim"
1010
"github.com/stretchr/testify/assert"
1111
"gonum.org/v1/gonum/mat"
1212
)

kalman/ekf/iekf.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package ekf
33
import (
44
"fmt"
55

6-
filter "github.com/milosgajdos83/go-estimate"
7-
"github.com/milosgajdos83/go-estimate/estimate"
8-
"github.com/milosgajdos83/go-estimate/noise"
6+
filter "github.com/milosgajdos/go-estimate"
7+
"github.com/milosgajdos/go-estimate/estimate"
8+
"github.com/milosgajdos/go-estimate/noise"
99
"gonum.org/v1/gonum/diff/fd"
1010
"gonum.org/v1/gonum/mat"
1111
)

kalman/kalman.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package kalman
22

33
import (
4-
filter "github.com/milosgajdos83/go-estimate"
4+
filter "github.com/milosgajdos/go-estimate"
55
"gonum.org/v1/gonum/mat"
66
)
77

kalman/kf/kf.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package kf
33
import (
44
"fmt"
55

6-
filter "github.com/milosgajdos83/go-estimate"
7-
"github.com/milosgajdos83/go-estimate/estimate"
8-
"github.com/milosgajdos83/go-estimate/noise"
6+
filter "github.com/milosgajdos/go-estimate"
7+
"github.com/milosgajdos/go-estimate/estimate"
8+
"github.com/milosgajdos/go-estimate/noise"
99
"gonum.org/v1/gonum/mat"
1010
)
1111

kalman/kf/kf_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"os"
55
"testing"
66

7-
filter "github.com/milosgajdos83/go-estimate"
8-
"github.com/milosgajdos83/go-estimate/noise"
9-
"github.com/milosgajdos83/go-estimate/sim"
7+
filter "github.com/milosgajdos/go-estimate"
8+
"github.com/milosgajdos/go-estimate/noise"
9+
"github.com/milosgajdos/go-estimate/sim"
1010
"github.com/stretchr/testify/assert"
1111
"gonum.org/v1/gonum/mat"
1212
)

0 commit comments

Comments
 (0)