dstl / Stone-Soup

A software project to provide the target tracking community with a framework for the development and testing of tracking algorithms.
https://stonesoup.rtfd.io
MIT License
388 stars 128 forks source link

Typo in constant derivative transition model process covariance formula #757

Closed KaidosUncle closed 1 year ago

KaidosUncle commented 1 year ago

The constant nth derivative linear transition model has a typo in the covar method on line 150. There is an N to the power of 2 when it should be N times 2 (extra asterisk).

Current: covar[l, k] = (igrand[l, k]*dt / (1 + N**2 - l - k))

Corrected: covar[l, k] = (igrand[l, k]dt / (1 + N2 - l - k))

sdhiscocks commented 1 year ago

Closed with #758. Thanks @KaidosUncle