Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

169 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Coverage Status goreport

gokalman

Go lang implementations of the Kalman Filter and its variantes, along with examples in statistical orbit determination.

Usage

estimateChan := make(chan(Estimate), 1)
go processEstimates(estimateChan)
kf := New[KalmanFilter](...) // e.g. NewVanilla(...)
for k, measurement := range measurements {
	newEstimate, err := kf.Update(measurement, controlVectors[k])
	if err != nil {
		processError(err)
		continue
	}
	estimateChan <- newEstimate
}
close(estimateChan)
// Should add a usage of sync.

About

A Kalman Filter library in go. Includes several examples in statistical orbit determination.

Topics

Resources

Stars

24 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages