We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in the constructor there's a code
int mesDim = useGpsSpeed ? 4 : 2; ... m_kf = new KalmanFilter(4, mesDim, 2);
so KalmanFilter creates Zk with 2 rows
this.Zk = new Matrix(measureDimension, 1);
but there's a call of Zk.setData with 4 varargs
Zk.setData
public void update(double timeStamp, double x, double y, double xVel, double yVel, double posDev, double velErr) { ... m_kf.Zk.setData(x, y, xVel, yVel); ...
which makes assert to fail
public void setData(double... args) { /* 4 != 2 x 1 */ assert(args.length == rows * cols); ... }
The text was updated successfully, but these errors were encountered:
woorkaround maddevsio/mad-location-manager#90
b0ffda4
There is fix in lib branch in C code. But I don't have time to finish this.
Sorry, something went wrong.
No branches or pull requests
in the constructor there's a code
so KalmanFilter creates Zk with 2 rows
but there's a call of
Zk.setData
with 4 varargswhich makes assert to fail
The text was updated successfully, but these errors were encountered: